Class: Google::Apis::AdexchangebuyerV1_4::PretargetingConfig::VideoPlayerSize
- Inherits:
-
Object
- Object
- Google::Apis::AdexchangebuyerV1_4::PretargetingConfig::VideoPlayerSize
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer_v1_4/classes.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb
Instance Attribute Summary collapse
-
#aspect_ratio ⇒ String
The type of aspect ratio.
-
#min_height ⇒ String
The minimum player height in pixels.
-
#min_width ⇒ String
The minimum player width in pixels.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoPlayerSize
constructor
A new instance of VideoPlayerSize.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoPlayerSize
Returns a new instance of VideoPlayerSize
2609 2610 2611 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2609 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aspect_ratio ⇒ String
The type of aspect ratio. Leave this field blank to match all aspect ratios.
Corresponds to the JSON property aspectRatio
2595 2596 2597 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2595 def aspect_ratio @aspect_ratio end |
#min_height ⇒ String
The minimum player height in pixels. Leave this field blank to match any
player height.
Corresponds to the JSON property minHeight
2601 2602 2603 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2601 def min_height @min_height end |
#min_width ⇒ String
The minimum player width in pixels. Leave this field blank to match any player
width.
Corresponds to the JSON property minWidth
2607 2608 2609 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2607 def min_width @min_width end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2614 2615 2616 2617 2618 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2614 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 |