OBJECT

PaymentIncentiveMetricsRollup

A monthly rollup of metrics that are relevant to incentive-based contracts for some partnered streamers.

link GraphQL Schema definition

1type PaymentIncentiveMetricsRollup {
2
3# A measure of how much advertising time broadcasters have during their live
4# streams.
5advertisingDensity: Float!
6
7# The number of live hours the user streamed for the month.
8liveHoursBroadcast: Float!
9
10# The number of live minutes watched for the month.
11liveMinutesWatched: Float!
12
13# The start time for the monthly rollup. These times are in the Pacific Time
14# Zone and the monthly rollups begin in this time zone. Rather than
15# converting to local time, clients should inform end users of this timing
16# quirk and perform custom parsing on these values to show the current year
17# and month in Pacific Time.
18timestamp: Time
19
20# The number of VOD minutes watched the user has for the month.
21vodMinutesWatched: Float!
22
23}