NackErrorType Enum
Type of the Nack. InvalidScopeError: Client's token is not valid for the intended op. ThrottlingError: Retryable after retryAfter number. BadRequestError: Clients op is invalid and should retry immediately with a valid op. LimitExceededError: Service is having issues. Client should not retry.
Signature
export declare enum NackErrorType
Flags
| Flag | Description |
|---|---|
| BadRequestError | |
| InvalidScopeError | |
| LimitExceededError | |
| ThrottlingError |
BadRequestError
Signature
BadRequestError = "BadRequestError"
InvalidScopeError
Signature
InvalidScopeError = "InvalidScopeError"
LimitExceededError
Signature
LimitExceededError = "LimitExceededError"
ThrottlingError
Signature
ThrottlingError = "ThrottlingError"