OBJECT

BountyCampaignReporting

Details about a bounty campaign reporting that only the sponsoring brand should see.

link GraphQL Schema definition

1type BountyCampaignReporting {
2
3# The total number of clicks from chat CTAs from every bounty.
4chatCTAsClicks: Int
5
6# The total number of impressions from chat CTAs from every bounty.
7chatCTAsImpressions: Int
8
9# The total number of broadcasters who have claimed the bounty.
10claimedBountyCount: Int
11
12# How much of the budget has been claimed (live bounties) (in cents).
13claimedBudgetCents: Int
14
15# The total number of broadcasters who have completed the bounty.
16completedBountyCount: Int
17
18# The total number of broadcasters who have expanded the bounty.
19expandedBountyCount: Int
20
21# Detailed performance metrics for this campaign.
22performanceMetrics: [BountyCampaignPerformanceMetric!]
23
24# How much of the budget has been spent (completed bounties) (in cents).
25spentBudgetCents: Int
26
27# The number of broadcasters who have viewed the bounty.
28viewedBountyCount: Int
29
30}