OBJECT

DisablePrerollsAbility

Disable Prerolls Ability contains the properties used by the Disable Prerolls Feature.

link GraphQL Schema definition

1type DisablePrerollsAbility {
2
3# DisablePrerollsFreeTime define relation of
4# midroll-length:preroll-free-time-earned on this channel.
5disablePrerollsTimeEarned: [DisablePrerollsFreeTime!]
6
7# If "disable prerolls for midrolls" feature is accessible on this channel.
8hasDisablePrerollsAbilityAccess: Boolean
9
10# If "disable prerolls for midrolls" feature is enabled on this channel.
11hasDisablePrerollsAbilityEnabled: Boolean
12
13# If disable preroll notifications are enabled on this channel.
14hasDisablePrerollsNotificationsEnabled: Boolean
15
16# Maximum amount of preroll-free time (in seconds) that can be accumulated on this
17# channel.
18maxDisablePrerollsCapacity: Int
19
20}