OBJECT

Density

Defines ads management attributes for channel.

link GraphQL Schema definition

1type Density {
2
3# Ad schedule for ads management.
4adSchedule: [AdSlot!]
5
6# Duration of auto ads.
7autoAdLengthSeconds: Int
8
9# Period inbetween each auto ad.
10autoAdPeriodMinutes: Int
11
12# If channel is a custom contract partner.
13isCCP: Boolean!
14
15# Minutes elapsed since stream started.
16minutesElapsed: Int
17
18# If contract is enforced on this channel.
19shouldEnforceContract: Boolean!
20
21# Ad density target for a specific channel.
22targetAdMinutes: Int
23
24# Total amount of ad time.
25totalAdSeconds: Int
26
27}