Class: Google::Apis::Adexchangebuyer2V2beta1::Image
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::Image
- 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
An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved.
Instance Attribute Summary collapse
-
#height ⇒ Fixnum
Image height in pixels.
-
#url ⇒ String
The URL of the image.
-
#width ⇒ Fixnum
Image width in pixels.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Image
constructor
A new instance of Image.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Image
Returns a new instance of Image
708 709 710 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 708 def initialize(**args) update!(**args) end |
Instance Attribute Details
#height ⇒ Fixnum
Image height in pixels.
Corresponds to the JSON property height
701 702 703 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 701 def height @height end |
#url ⇒ String
The URL of the image.
Corresponds to the JSON property url
696 697 698 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 696 def url @url end |
#width ⇒ Fixnum
Image width in pixels.
Corresponds to the JSON property width
706 707 708 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 706 def width @width end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
713 714 715 716 717 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 713 def update!(**args) @url = args[:url] if args.key?(:url) @height = args[:height] if args.key?(:height) @width = args[:width] if args.key?(:width) end |