class Google::Apis::AdexchangebuyerV1_4::PretargetingConfig::VideoPlayerSize

Attributes

aspect_ratio[RW]

The type of aspect ratio. Leave this field blank to match all aspect ratios. Corresponds to the JSON property `aspectRatio` @return [String]

min_height[RW]

The minimum player height in pixels. Leave this field blank to match any player height. Corresponds to the JSON property `minHeight` @return [Fixnum]

min_width[RW]

The minimum player width in pixels. Leave this field blank to match any player width. Corresponds to the JSON property `minWidth` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 2748
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 2753
def update!(**args)
  @aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
  @min_height = args[:min_height] if args.key?(:min_height)
  @min_width = args[:min_width] if args.key?(:min_width)
end