OBJECT

AdProperties

Ad Properties is an object that defines ad properties for a channel.

link GraphQL Schema definition

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