Class: Google::Apis::Adexchangebuyer2V2beta1::Size
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::Size
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
Message depicting the size of the creative. The units of width and height depend on the type of the targeting.
Instance Attribute Summary collapse
-
#height ⇒ Fixnum
The height of the creative.
-
#width ⇒ Fixnum
The width of the creative Corresponds to the JSON property
width
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Size
constructor
A new instance of Size.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Size
Returns a new instance of Size
3897 3898 3899 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3897 def initialize(**args) update!(**args) end |
Instance Attribute Details
#height ⇒ Fixnum
The height of the creative.
Corresponds to the JSON property height
3890 3891 3892 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3890 def height @height end |
#width ⇒ Fixnum
The width of the creative
Corresponds to the JSON property width
3895 3896 3897 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3895 def width @width end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3902 3903 3904 3905 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3902 def update!(**args) @height = args[:height] if args.key?(:height) @width = args[:width] if args.key?(:width) end |