OBJECT

SponsoredCheermoteChannelSettingsNode

The information associated with a given sponsored cheermote channel setting.

link GraphQL Schema definition

1type SponsoredCheermoteChannelSettingsNode {
2
3# Brand's image to display, in the form of a URL.
4brandImageURL: String!
5
6# Brand name to display.
7brandName: String!
8
9# Time the campaign ends.
10endTime: Time!
11
12# The campaign ID, which is unique.
13id: ID!
14
15# The opt in status of the campaign.
16isOptedIn: Boolean!
17
18# Time the campaign starts.
19startTime: Time!
20
21# Thresholds for matching on sponsored cheering.
22thresholds: [CheermoteCampaignThreshold!]!
23
24}