OBJECT

DashboardActivityFeedActivityPrimeResubscribing

When a user resubscribes via Twitch Prime to a channel.

link GraphQL Schema definition

1type DashboardActivityFeedActivityPrimeResubscribing 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# User who is renewing the subscription.
21resubscriber: User
22
23# When the subscription was renewed.
24timestamp: Time!
25
26}

link Required by

This element is not required by anyone