class Google::Apis::AdexchangebuyerV1_3::Creative::NativeAd::Image

A large image.

Attributes

height[RW]

Corresponds to the JSON property `height` @return [Fixnum]

url[RW]

Corresponds to the JSON property `url` @return [String]

width[RW]

Corresponds to the JSON property `width` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer_v1_3/classes.rb, line 717
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_3/classes.rb, line 722
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