ENUM

DropsErrorCode

Enum for Drops2 errors.

link GraphQL Schema definition

1enum DropsErrorCode {
2
3# The error code is unknown.
4UNKNOWN
5
6# The user is either not authenticated or not authorized to perform the request.
7UNAUTHORIZED
8
9# A request field either was not present or did not meet validation requirements.
10INVALID_ARGUMENT
11
12# The drops2 object is not in the right state to perform this operation.
13FAILED_PRECONDITION
14
15# The object you wish to query / modify is not found.
16NOT_FOUND
17
18# The object you're trying to create, already exists.
19ALREADY_EXISTS
20}