OBJECT
DashboardActivityFeedActivityResubscribing
When a user resubscribes (NOT via Twitch Prime) to a channel.
link GraphQL Schema definition
1 type DashboardActivityFeedActivityResubscribing implements DashboardActivityFeedActivity { 2 3 # Status of the corresponding alert. 4 : DashboardActivityFeedActivityAlertStatus 5 6 # Duration of the subscription. 7 : Int! 8 9 # Unique identifier for the act of renewing the subscription. 10 : ID! 11 12 # Custom message submitted by the resubscribing user to share in chat. 13 : String @deprecated( reason: "Use messageContent's fragments for enriching the text" ) 14 15 # Custom message submitted by the resubscribing user to share in chat. 16 # Message is filtered for moderation and emotes are extracted as message 17 # fragments. 18 : MessageContent 19 20 # Duration of the multi month subscription. 21 : Int! 22 23 # Tenure of the user's current multi month subscription. 24 : Int! 25 26 # User who is renewing the subscription. 27 : User 28 29 # Subscription tier. 30 : SubscriptionTier! 31 32 # When the subscription was renewed. 33 : Time! 34 35 }
link Required by
This element is not required by anyone