Class: Google::Apis::DfareportingV5::SiteVideoSettings
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV5::SiteVideoSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v5/classes.rb,
lib/google/apis/dfareporting_v5/representations.rb,
lib/google/apis/dfareporting_v5/representations.rb
Overview
Video Settings
Instance Attribute Summary collapse
-
#companion_settings ⇒ Google::Apis::DfareportingV5::SiteCompanionSetting
Companion Settings Corresponds to the JSON property
companionSettings. -
#kind ⇒ String
Identifies what kind of resource this is.
-
#oba_enabled ⇒ Boolean
(also: #oba_enabled?)
Whether OBA icons are enabled for this placement.
-
#oba_settings ⇒ Google::Apis::DfareportingV5::ObaIcon
Online Behavioral Advertiser icon.
-
#orientation ⇒ String
Orientation of a site template used for video.
-
#publisher_specification_id ⇒ Fixnum
Publisher specification ID used to identify site-associated publisher requirements and automatically populate transcode settings.
-
#skippable_settings ⇒ Google::Apis::DfareportingV5::SiteSkippableSetting
Skippable Settings Corresponds to the JSON property
skippableSettings. -
#transcode_settings ⇒ Google::Apis::DfareportingV5::SiteTranscodeSetting
Transcode Settings Corresponds to the JSON property
transcodeSettings.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SiteVideoSettings
constructor
A new instance of SiteVideoSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SiteVideoSettings
Returns a new instance of SiteVideoSettings.
12090 12091 12092 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12090 def initialize(**args) update!(**args) end |
Instance Attribute Details
#companion_settings ⇒ Google::Apis::DfareportingV5::SiteCompanionSetting
Companion Settings
Corresponds to the JSON property companionSettings
12040 12041 12042 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12040 def companion_settings @companion_settings end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#siteVideoSettings".
Corresponds to the JSON property kind
12046 12047 12048 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12046 def kind @kind end |
#oba_enabled ⇒ Boolean Also known as: oba_enabled?
Whether OBA icons are enabled for this placement.
Corresponds to the JSON property obaEnabled
12051 12052 12053 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12051 def oba_enabled @oba_enabled end |
#oba_settings ⇒ Google::Apis::DfareportingV5::ObaIcon
Online Behavioral Advertiser icon.
Corresponds to the JSON property obaSettings
12057 12058 12059 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12057 def oba_settings @oba_settings end |
#orientation ⇒ String
Orientation of a site template used for video. This will act as default for
new placements created under this site.
Corresponds to the JSON property orientation
12063 12064 12065 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12063 def orientation @orientation end |
#publisher_specification_id ⇒ Fixnum
Publisher specification ID used to identify site-associated publisher
requirements and automatically populate transcode settings. If publisher
specification ID is specified, it will take precedence over transcode settings.
Possible values are: * 1, Hulu * 2, NBC * 3, CBS * 4, CBS Desktop *
5, Discovery * 6, VEVO HD * 7, VEVO Vertical * 8, Fox * 9, CW Network
10, Disney *11, IGN *12, NFL.com *13, Turner Broadcasting *14, Tubi on Fox *15, Hearst Corporation *16, Twitch Desktop *17, ABC *18, Univision *19, MLB.com *20, MLB.com Mobile *21, MLB.com OTT *22, Polsat *23, TVN *24, Mediaset *25, Antena 3 *26, Mediamond *27, Sky Italia *28, Tubi on CBS *29, Spotify *30, Paramount *31, Max Corresponds to the JSON propertypublisherSpecificationId
12078 12079 12080 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12078 def publisher_specification_id @publisher_specification_id end |
#skippable_settings ⇒ Google::Apis::DfareportingV5::SiteSkippableSetting
Skippable Settings
Corresponds to the JSON property skippableSettings
12083 12084 12085 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12083 def skippable_settings @skippable_settings end |
#transcode_settings ⇒ Google::Apis::DfareportingV5::SiteTranscodeSetting
Transcode Settings
Corresponds to the JSON property transcodeSettings
12088 12089 12090 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12088 def transcode_settings @transcode_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 12095 def update!(**args) @companion_settings = args[:companion_settings] if args.key?(:companion_settings) @kind = args[:kind] if args.key?(:kind) @oba_enabled = args[:oba_enabled] if args.key?(:oba_enabled) @oba_settings = args[:oba_settings] if args.key?(:oba_settings) @orientation = args[:orientation] if args.key?(:orientation) @publisher_specification_id = args[:publisher_specification_id] if args.key?(:publisher_specification_id) @skippable_settings = args[:skippable_settings] if args.key?(:skippable_settings) @transcode_settings = args[:transcode_settings] if args.key?(:transcode_settings) end |