Class: Google::Apis::Adexchangebuyer2V2beta1::Image

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Image

Returns a new instance of Image



1107
1108
1109
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1107

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

Instance Attribute Details

#heightFixnum

Image height in pixels. Corresponds to the JSON property height

Returns:

  • (Fixnum)


1095
1096
1097
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1095

def height
  @height
end

#urlString

The URL of the image. Corresponds to the JSON property url

Returns:

  • (String)


1100
1101
1102
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1100

def url
  @url
end

#widthFixnum

Image width in pixels. Corresponds to the JSON property width

Returns:

  • (Fixnum)


1105
1106
1107
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1105

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1112
1113
1114
1115
1116
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1112

def update!(**args)
  @height = args[:height] if args.key?(:height)
  @url = args[:url] if args.key?(:url)
  @width = args[:width] if args.key?(:width)
end