Class: Google::Apis::DisplayvideoV3::VideoAdSequenceSettings
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::VideoAdSequenceSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Overview
Settings related to VideoAdSequence.
Instance Attribute Summary collapse
-
#minimum_duration ⇒ String
The minimum time interval before the same user sees this sequence again.
-
#steps ⇒ Array<Google::Apis::DisplayvideoV3::VideoAdSequenceStep>
The steps of which the sequence consists.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoAdSequenceSettings
constructor
A new instance of VideoAdSequenceSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VideoAdSequenceSettings
Returns a new instance of VideoAdSequenceSettings.
12349 12350 12351 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12349 def initialize(**args) update!(**args) end |
Instance Attribute Details
#minimum_duration ⇒ String
The minimum time interval before the same user sees this sequence again.
Corresponds to the JSON property minimumDuration
12342 12343 12344 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12342 def minimum_duration @minimum_duration end |
#steps ⇒ Array<Google::Apis::DisplayvideoV3::VideoAdSequenceStep>
The steps of which the sequence consists.
Corresponds to the JSON property steps
12347 12348 12349 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12347 def steps @steps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12354 12355 12356 12357 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12354 def update!(**args) @minimum_duration = args[:minimum_duration] if args.key?(:minimum_duration) @steps = args[:steps] if args.key?(:steps) end |