Class: Google::Apis::DfareportingV3_3::VideoSettings
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_3::VideoSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb
Overview
Video Settings
Instance Attribute Summary collapse
-
#companion_settings ⇒ Google::Apis::DfareportingV3_3::CompanionSetting
Companion Settings Corresponds to the JSON property
companionSettings
. -
#kind ⇒ String
Identifies what kind of resource this is.
-
#orientation ⇒ String
Orientation of a video placement.
-
#skippable_settings ⇒ Google::Apis::DfareportingV3_3::SkippableSetting
Skippable Settings Corresponds to the JSON property
skippableSettings
. -
#transcode_settings ⇒ Google::Apis::DfareportingV3_3::TranscodeSetting
Transcode Settings Corresponds to the JSON property
transcodeSettings
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoSettings
constructor
A new instance of VideoSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoSettings
Returns a new instance of VideoSettings
12278 12279 12280 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12278 def initialize(**args) update!(**args) end |
Instance Attribute Details
#companion_settings ⇒ Google::Apis::DfareportingV3_3::CompanionSetting
Companion Settings
Corresponds to the JSON property companionSettings
12254 12255 12256 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12254 def companion_settings @companion_settings end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#videoSettings".
Corresponds to the JSON property kind
12260 12261 12262 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12260 def kind @kind end |
#orientation ⇒ String
Orientation of a video placement. If this value is set, placement will return
assets matching the specified orientation.
Corresponds to the JSON property orientation
12266 12267 12268 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12266 def orientation @orientation end |
#skippable_settings ⇒ Google::Apis::DfareportingV3_3::SkippableSetting
Skippable Settings
Corresponds to the JSON property skippableSettings
12271 12272 12273 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12271 def skippable_settings @skippable_settings end |
#transcode_settings ⇒ Google::Apis::DfareportingV3_3::TranscodeSetting
Transcode Settings
Corresponds to the JSON property transcodeSettings
12276 12277 12278 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12276 def transcode_settings @transcode_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12283 12284 12285 12286 12287 12288 12289 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 12283 def update!(**args) @companion_settings = args[:companion_settings] if args.key?(:companion_settings) @kind = args[:kind] if args.key?(:kind) @orientation = args[:orientation] if args.key?(:orientation) @skippable_settings = args[:skippable_settings] if args.key?(:skippable_settings) @transcode_settings = args[:transcode_settings] if args.key?(:transcode_settings) end |