OBJECT

ResubNotification

A recent resub token to use for sending a special message.

link GraphQL Schema definition

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