Class: Google::Apis::DisplayvideoV1::VideoPlayerSizeAssignedTargetingOptionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::VideoPlayerSizeAssignedTargetingOptionDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v1/classes.rb,
lib/google/apis/displayvideo_v1/representations.rb,
lib/google/apis/displayvideo_v1/representations.rb
Overview
Video player size targeting option details. This will be populated in the
video_player_size_details field when targeting_type is
TARGETING_TYPE_VIDEO_PLAYER_SIZE. Explicitly targeting all options is not
supported. Remove all video player size targeting options to achieve this
effect.
Instance Attribute Summary collapse
-
#targeting_option_id ⇒ String
Required.
-
#video_player_size ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoPlayerSizeAssignedTargetingOptionDetails
constructor
A new instance of VideoPlayerSizeAssignedTargetingOptionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VideoPlayerSizeAssignedTargetingOptionDetails
Returns a new instance of VideoPlayerSizeAssignedTargetingOptionDetails.
10722 10723 10724 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 10722 def initialize(**args) update!(**args) end |
Instance Attribute Details
#targeting_option_id ⇒ String
Required. The targeting_option_id field when targeting_type is
TARGETING_TYPE_VIDEO_PLAYER_SIZE.
Corresponds to the JSON property targetingOptionId
10715 10716 10717 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 10715 def targeting_option_id @targeting_option_id end |
#video_player_size ⇒ String
Required. The video player size.
Corresponds to the JSON property videoPlayerSize
10720 10721 10722 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 10720 def video_player_size @video_player_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10727 10728 10729 10730 |
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 10727 def update!(**args) @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id) @video_player_size = args[:video_player_size] if args.key?(:video_player_size) end |