OBJECT
BountyCampaignBrandDetails
Details about a bounty campaign that only the sponsoring brand should see.
link GraphQL Schema definition
1 type BountyCampaignBrandDetails { 2 3 # The list of users (if any) blacklisted for the campaign. 4 # Limited to 40 users - use totalBlockedBroadcasters for the total count. 5 : [User!] 6 7 # The multiplier for the broadcaster payout rate. 8 : Float 9 10 # Reporting data for the campaign. 11 : BountyCampaignReporting 12 13 # The chat Calls to Action for the campaign. 14 : [BountyChatCTA!] 15 16 # The total number of broadcasters who have claimed the bounty. 17 : Int @deprecated( reason: "Use 'claimedBountyCount' in 'campaignReporting' instead." ) 18 19 # How much of the budget has been claimed (in cents). 20 : Int @deprecated( reason: "Use 'claimedBudgetCents' in 'campaignReporting' instead." ) 21 22 # The total number of broadcasters who have completed the bounty. 23 : Int @deprecated( reason: "Use 'completedBountyCount' in 'campaignReporting' instead." ) 24 25 # The total number of broadcasters who have expanded the bounty. 26 : Int @deprecated( reason: "Use 'expandedBountyCount' in 'campaignReporting' instead." ) 27 28 # If all broadcasters are targeted for the campaign. 29 : Boolean 30 31 # If all countries are targeted for the campaign. 32 : Boolean! 33 34 # If all games are targeted for the campaign. 35 : Boolean! 36 37 # If variety broadcasters are targeted for the campaign. 38 : Boolean! 39 40 # Detailed performance metrics for this campaign. 41 : [BountyCampaignPerformanceMetric!] @deprecated( reason: "Use 'performanceMetrics' in 'campaignReporting' instead." ) 42 43 # Why the campaign was rejected. 44 : String 45 46 # How much of the budget has been spent (completed bounties) (in cents). 47 : Int 48 49 # The status of the campaign. 50 : BountyCampaignStatus 51 52 # Targeted countries for the campaign (represented by ISO 3166-1 alpha-2). 53 : [String!] 54 55 # Targeted Games for the campaign. 56 : [Game!] 57 58 # The total length of the blacklistedBroadcasters list. 59 : Int 60 61 # The total budget for the campaign (in cents). 62 : Int 63 64 # The number of broadcasters who have viewed the bounty. 65 : Int @deprecated( reason: "Use 'viewedBountyCount' in 'campaignReporting' instead." ) 66 67 }