OBJECT

BountyChatCTA

A chat Call to Action (CTA) that will be trigger in the broadcaster chat while doing the bounty.

link GraphQL Schema definition

1type BountyChatCTA {
2
3# The country targeted for the chat CTA (represented by ISO 3166-1 alpha-2).
4countryCode: String!
5
6# The time (in seconds) between each appearance of the chat CTA.
7frequencySeconds: Int!
8
9# The initial delay (in seconds) before the first chat CTA.
10initialDelaySeconds: Int!
11
12# The title of the chat CTA.
13title: String!
14
15# The URL of the chat CTA.
16url: String!
17
18}