OBJECT

ChargeModel

ChargeModel describes the model used for charging the user. Will only contain one credit model, one external model, or one internal model.

link GraphQL Schema definition

1type ChargeModel {
2
3# A charge model in which a user is charged using credits purchased or earned on
4# Twitch.
5credit: CreditChargeModel
6
7# A charge model in which a user is charged via a third-party in a fiat currency.
8external: ExternalChargeModel
9
10# A charge model in which a user is charged by Twitch in a fiat currency.
11internal: InternalChargeModel
12
13}