ENUM

ResetUsernameErrorCode

Possible error codes returned from a username reset.

link GraphQL Schema definition

1enum ResetUsernameErrorCode {
2
3# Authorization token is not valid.
4TOKEN_INVALID
5
6# Too many attempts to update login.
7REQUESTS_THROTTLED
8
9# Login is not available.
10LOGIN_UNAVAILABLE
11
12# Login is too short.
13LOGIN_TOO_SHORT
14
15# Login is too long.
16LOGIN_TOO_LONG
17
18# Login contains characters that are not allowed.
19LOGIN_CONTAINS_INVALID_CHARACTERS
20
21# Unrecognized error returned from the backend service.
22UNKNOWN_ERROR
23}