OBJECT

BountyCampaignBrandDetails

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

link GraphQL Schema definition

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