Class: Google::Apis::DisplayvideoV1::VideoPlayerSizeAssignedTargetingOptionDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoPlayerSizeAssignedTargetingOptionDetails

Returns a new instance of VideoPlayerSizeAssignedTargetingOptionDetails.



9618
9619
9620
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9618

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#targeting_option_idString

Required. The targeting_option_id field when targeting_type is TARGETING_TYPE_VIDEO_PLAYER_SIZE. Corresponds to the JSON property targetingOptionId

Returns:

  • (String)


9611
9612
9613
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9611

def targeting_option_id
  @targeting_option_id
end

#video_player_sizeString

Output only. The video player size. Corresponds to the JSON property videoPlayerSize

Returns:

  • (String)


9616
9617
9618
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9616

def video_player_size
  @video_player_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9623
9624
9625
9626
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 9623

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