OBJECT
AdProperties
Ad Properties is an object that defines ad properties for a channel.
link GraphQL Schema definition
1 type AdProperties { 2 3 # Deprecated. 4 : String @deprecated( reason: "Should use adServerDefault instead" ) 5 6 # Which adserver to send requests to. 7 : String 8 9 # Amazon Digital Ad Service (ADAS) specific Properties for this channel. 10 # Properties should only be nested if it is ADAS specific. 11 : ADASProperties 12 13 # Which ids are costreamers for this channel. 14 : [User] 15 16 # Contains ad density information for channel ads management. 17 : Density 18 19 # Contains properties used by channel's disable prerolls feature. 20 : DisablePrerollsAbility 21 22 # Get the ad experiment treatment group for a specified experiment bucket. 23 (: String!): String 24 25 # How often ad breaks can be run on this channel. 26 : Int 27 28 # If postrolls are disabled on this channel. 29 : Boolean 30 31 # If prerolls are disabled on this channel. 32 : Boolean 33 34 # If Turbo benefit is disabled on this channel. 35 : Boolean 36 37 # If vod ads are enabled on this channel. 38 : Boolean 39 40 # If multiplayer ads are enabled for subscribers on this channel. 41 : Boolean 42 43 # A bool that represents a streamer's eligibility to run a picture by picture ad. 44 : Boolean 45 46 # Maximum length for an ad break on this channel. 47 : Int 48 49 # Current multiplayer ad offers on the channel. 50 : [MultiplayerAdOffer!] 51 52 # The stream has the required age gate enabled if greater than 0. 53 : Int 54 55 # Tracking pixels that channel pages should fire at certain intervals. 56 (: GDPRConsent): [TrackingPixel!] 57 58 # Setting for vod archive midrolls on this channel. Can be 'broadcaster', 59 # 'inserted', or 'off'. 60 : String 61 62 # Ad break length for VOD archive midrolls on this channel. 63 : Int 64 65 # Frequency for VOD archive midrolls on this channel. 66 : Int 67 68 }