Class: Google::Apis::DfareportingV2_8::VideoSettings
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_8::VideoSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Video Settings
Instance Attribute Summary collapse
-
#companion_settings ⇒ Google::Apis::DfareportingV2_8::CompanionSetting
Companion Settings Corresponds to the JSON property
companionSettings
. -
#kind ⇒ String
Identifies what kind of resource this is.
-
#skippable_settings ⇒ Google::Apis::DfareportingV2_8::SkippableSetting
Skippable Settings Corresponds to the JSON property
skippableSettings
. -
#transcode_settings ⇒ Google::Apis::DfareportingV2_8::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
12029 12030 12031 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 12029 def initialize(**args) update!(**args) end |
Instance Attribute Details
#companion_settings ⇒ Google::Apis::DfareportingV2_8::CompanionSetting
Companion Settings
Corresponds to the JSON property companionSettings
12011 12012 12013 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 12011 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
12017 12018 12019 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 12017 def kind @kind end |
#skippable_settings ⇒ Google::Apis::DfareportingV2_8::SkippableSetting
Skippable Settings
Corresponds to the JSON property skippableSettings
12022 12023 12024 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 12022 def skippable_settings @skippable_settings end |
#transcode_settings ⇒ Google::Apis::DfareportingV2_8::TranscodeSetting
Transcode Settings
Corresponds to the JSON property transcodeSettings
12027 12028 12029 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 12027 def transcode_settings @transcode_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12034 12035 12036 12037 12038 12039 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 12034 def update!(**args) @companion_settings = args[:companion_settings] if args.key?(:companion_settings) @kind = args[:kind] if args.key?(:kind) @skippable_settings = args[:skippable_settings] if args.key?(:skippable_settings) @transcode_settings = args[:transcode_settings] if args.key?(:transcode_settings) end |