Class: Google::Apis::AdexchangebuyerV1_3::Creative::NativeAd::Logo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer_v1_3/classes.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb

Overview

A smaller image, for the advertiser logo.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Logo

Returns a new instance of Logo.



748
749
750
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 748

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

Instance Attribute Details

#heightFixnum

Corresponds to the JSON property height

Returns:

  • (Fixnum)


736
737
738
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 736

def height
  @height
end

#urlString

Corresponds to the JSON property url

Returns:

  • (String)


741
742
743
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 741

def url
  @url
end

#widthFixnum

Corresponds to the JSON property width

Returns:

  • (Fixnum)


746
747
748
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 746

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



753
754
755
756
757
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 753

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