OBJECT

ProgramAgreement

ProgramAgreement describes the End User License Agreement associated with a user's current payout plan.

link GraphQL Schema definition

1type ProgramAgreement {
2
3# Agreement body in HTML.
4body: String!
5
6# Agreement type accepted by the user.
7type: PayoutOnboardingCategory!
8
9# Agreement version (e.g. "v1").
10version: String!
11
12}