OBJECT

Balance

Balance for a Twitch User Account in a FIAT currency. Can be used to purchase product on the Twitch Platform.

link GraphQL Schema definition

1type Balance {
2
3# Amount in the smallest unit of subcurrency.
4amount: Int!
5
6# ISO-4217 currency code of a user's balance.
7currency: Currency!
8
9# When the credit amount will expire. Can be non-expirable (null).
10expiresAt: Time
11
12# Number of digits after the decimal separator.
13exponent: Int!
14
15}