ENUM

WatchPartyErrorCode

Enum for user errors.

link GraphQL Schema definition

1enum WatchPartyErrorCode {
2
3# Used for invalid requests.
4BAD_REQUEST
5
6# Used when the access token is expired.
7FORBIDDEN
8
9# Used when the user's request is throttled.
10REQUEST_THROTTLED
11
12# Used when the user is geo restricted.
13GEO_RESTRICTED
14
15# Used when the error is unknown.
16UNKNOWN
17}