OBJECT
BountyCampaignPerformanceMetric
Metric containing details about how a campaign performed over a time period.
link GraphQL Schema definition
1 type BountyCampaignPerformanceMetric { 2 3 # The number of click-throughs from the Chat CTAs of the campaign. 4 : Int 5 6 # The total number of bounties that were completed. 7 : Int! 8 9 # The end time of this metric. 10 : Time! 11 12 # The total number of minutes watched. 13 : Int! 14 15 # The start time of this metric. 16 : Time! 17 18 # The number of viewers that watched at least thirty seconds of the campaign's 19 # content. 20 : Int! 21 22 # The total number of viewers that watched the campaign's content. 23 : Int! 24 25 # The number of viewers that watched at least two minutes of the campaign's 26 # content. 27 : Int! 28 29 }