OBJECT
BountyCampaignReporting
Details about a bounty campaign reporting that only the sponsoring brand should see.
link GraphQL Schema definition
1 type BountyCampaignReporting { 2 3 # The total number of clicks from chat CTAs from every bounty. 4 : Int 5 6 # The total number of impressions from chat CTAs from every bounty. 7 : Int 8 9 # The total number of broadcasters who have claimed the bounty. 10 : Int 11 12 # How much of the budget has been claimed (live bounties) (in cents). 13 : Int 14 15 # The total number of broadcasters who have completed the bounty. 16 : Int 17 18 # The total number of broadcasters who have expanded the bounty. 19 : Int 20 21 # Detailed performance metrics for this campaign. 22 : [BountyCampaignPerformanceMetric!] 23 24 # How much of the budget has been spent (completed bounties) (in cents). 25 : Int 26 27 # The number of broadcasters who have viewed the bounty. 28 : Int 29 30 }