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