OBJECT

BountyCampaignPerformanceMetric

Metric containing details about how a campaign performed over a time period.

link GraphQL Schema definition

1type BountyCampaignPerformanceMetric {
2
3# The number of click-throughs from the Chat CTAs of the campaign.
4chatCTAClickThroughCount: Int
5
6# The total number of bounties that were completed.
7completedBountyCount: Int!
8
9# The end time of this metric.
10endTime: Time!
11
12# The total number of minutes watched.
13minutesWatched: Int!
14
15# The start time of this metric.
16startTime: Time!
17
18# The number of viewers that watched at least thirty seconds of the campaign's
19# content.
20thirtySecondViewerCount: Int!
21
22# The total number of viewers that watched the campaign's content.
23totalViewerCount: Int!
24
25# The number of viewers that watched at least two minutes of the campaign's
26# content.
27twoMinuteViewerCount: Int!
28
29}