ENUM

ValidateVerificationCodeErrorCode

Error types for verification.

link GraphQL Schema definition

1enum ValidateVerificationCodeErrorCode {
2
3# Verification failed because provided code does not match.
4INCORRECT_CODE
5
6# Validation code was incorrect and the code has been regenerated and resent due
7# to too many failed attempts.
8TOO_MANY_FAILED_ATTEMPTS
9
10# Verification failed due to being rate limited.
11RATE_LIMITED
12
13# Verification failed due to some unknown, unclassified error.
14UNKNOWN
15}