OBJECT
ResubNotification
A recent resub token to use for sending a special message.
link GraphQL Schema definition
1 type ResubNotification { 2 3 # The number of months of total subbing. 4 : Int! 5 6 # A unique ID for the resub notification. 7 : ID! 8 9 # The number of months of consecutive subbing. 10 : Int! 11 12 # The number of months of consecutive subbing. 13 : Int! 14 15 # The token to use when submitting a sub/resub message. 16 : String! 17 18 # If the resub notification is caused by a gift or not 19 : Boolean! 20 21 # Gifter who gave the gift, null if no gifter or anon 22 : User 23 24 }