OBJECT

DashboardActivityFeedActivityResubscribing

When a user resubscribes (NOT via Twitch Prime) to a channel.

link GraphQL Schema definition

1type DashboardActivityFeedActivityResubscribing implements DashboardActivityFeedActivity {
2
3# Status of the corresponding alert.
4alertStatus: DashboardActivityFeedActivityAlertStatus
5
6# Duration of the subscription.
7durationMonths: Int!
8
9# Unique identifier for the act of renewing the subscription.
10id: ID!
11
12# Custom message submitted by the resubscribing user to share in chat.
13message: 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.
18messageContent: MessageContent
19
20# Duration of the multi month subscription.
21multiMonthDuration: Int!
22
23# Tenure of the user's current multi month subscription.
24multiMonthTenure: Int!
25
26# User who is renewing the subscription.
27resubscriber: User
28
29# Subscription tier.
30tier: SubscriptionTier!
31
32# When the subscription was renewed.
33timestamp: Time!
34
35}

link Required by

This element is not required by anyone