ENUM

AcceptProgramAgreementError

Enumerates possible errors when accepting a program agreement.

link GraphQL Schema definition

1enum AcceptProgramAgreementError {
2
3# Must have auth credentials to agree to a program agreement.
4UNAUTHENTICATED
5
6# User does not have permission to agree to the program agreement for the targeted
7# user.
8FORBIDDEN
9
10# Version of the agreement provided in the input is not valid.
11INVALID_AGREEMENT_VERSION
12
13# An internal error has occurred.
14INTERNAL_ERROR
15}