Class: Google::Apis::DisplayvideoV3::DoubleVerifyVideoViewability
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::DoubleVerifyVideoViewability
- 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
Details of DoubleVerify video viewability settings.
Instance Attribute Summary collapse
-
#player_impression_rate ⇒ String
Target inventory to maximize impressions with 400x300 or greater player size.
-
#video_iab ⇒ String
Target web inventory to maximize IAB viewable rate.
-
#video_viewable_rate ⇒ String
Target web inventory to maximize fully viewable rate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DoubleVerifyVideoViewability
constructor
A new instance of DoubleVerifyVideoViewability.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DoubleVerifyVideoViewability
Returns a new instance of DoubleVerifyVideoViewability.
5661 5662 5663 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5661 def initialize(**args) update!(**args) end |
Instance Attribute Details
#player_impression_rate ⇒ String
Target inventory to maximize impressions with 400x300 or greater player size.
Corresponds to the JSON property playerImpressionRate
5649 5650 5651 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5649 def player_impression_rate @player_impression_rate end |
#video_iab ⇒ String
Target web inventory to maximize IAB viewable rate.
Corresponds to the JSON property videoIab
5654 5655 5656 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5654 def video_iab @video_iab end |
#video_viewable_rate ⇒ String
Target web inventory to maximize fully viewable rate.
Corresponds to the JSON property videoViewableRate
5659 5660 5661 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5659 def video_viewable_rate @video_viewable_rate end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5666 5667 5668 5669 5670 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5666 def update!(**args) @player_impression_rate = args[:player_impression_rate] if args.key?(:player_impression_rate) @video_iab = args[:video_iab] if args.key?(:video_iab) @video_viewable_rate = args[:video_viewable_rate] if args.key?(:video_viewable_rate) end |