Class: Google::Apis::AdexchangebuyerV1_4::Creative::NativeAd

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

Overview

If nativeAd is set, HTMLSnippet and videoURL should not be set.

Defined Under Namespace

Classes: AppIcon, Image, Logo

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) ⇒ NativeAd

Returns a new instance of NativeAd.



856
857
858
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 856

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

Instance Attribute Details

#advertiserString

Corresponds to the JSON property advertiser

Returns:

  • (String)


799
800
801
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 799

def advertiser
  @advertiser
end

#app_iconGoogle::Apis::AdexchangebuyerV1_4::Creative::NativeAd::AppIcon

The app icon, for app download ads. Corresponds to the JSON property appIcon



804
805
806
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 804

def app_icon
  @app_icon
end

#bodyString

A long description of the ad. Corresponds to the JSON property body

Returns:

  • (String)


809
810
811
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 809

def body
  @body
end

#call_to_actionString

A label for the button that the user is supposed to click. Corresponds to the JSON property callToAction

Returns:

  • (String)


814
815
816
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 814

def call_to_action
  @call_to_action
end

#click_tracking_urlString

The URL to use for click tracking. Corresponds to the JSON property clickTrackingUrl

Returns:

  • (String)


819
820
821
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 819

def click_tracking_url
  @click_tracking_url
end

#headlineString

A short title for the ad. Corresponds to the JSON property headline

Returns:

  • (String)


824
825
826
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 824

def headline
  @headline
end

#imageGoogle::Apis::AdexchangebuyerV1_4::Creative::NativeAd::Image

A large image. Corresponds to the JSON property image



829
830
831
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 829

def image
  @image
end

#impression_tracking_urlArray<String>

The URLs are called when the impression is rendered. Corresponds to the JSON property impressionTrackingUrl

Returns:

  • (Array<String>)


834
835
836
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 834

def impression_tracking_url
  @impression_tracking_url
end

#logoGoogle::Apis::AdexchangebuyerV1_4::Creative::NativeAd::Logo

A smaller image, for the advertiser logo. Corresponds to the JSON property logo



839
840
841
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 839

def 
  @logo
end

#priceString

The price of the promoted app including the currency info. Corresponds to the JSON property price

Returns:

  • (String)


844
845
846
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 844

def price
  @price
end

#star_ratingFloat

The app rating in the app store. Must be in the range [0-5]. Corresponds to the JSON property starRating

Returns:

  • (Float)


849
850
851
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 849

def star_rating
  @star_rating
end

#storeString

The URL to the app store to purchase/download the promoted app. Corresponds to the JSON property store

Returns:

  • (String)


854
855
856
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 854

def store
  @store
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



861
862
863
864
865
866
867
868
869
870
871
872
873
874
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 861

def update!(**args)
  @advertiser = args[:advertiser] if args.key?(:advertiser)
  @app_icon = args[:app_icon] if args.key?(:app_icon)
  @body = args[:body] if args.key?(:body)
  @call_to_action = args[:call_to_action] if args.key?(:call_to_action)
  @click_tracking_url = args[:click_tracking_url] if args.key?(:click_tracking_url)
  @headline = args[:headline] if args.key?(:headline)
  @image = args[:image] if args.key?(:image)
  @impression_tracking_url = args[:impression_tracking_url] if args.key?(:impression_tracking_url)
  @logo = args[:logo] if args.key?(:logo)
  @price = args[:price] if args.key?(:price)
  @star_rating = args[:star_rating] if args.key?(:star_rating)
  @store = args[:store] if args.key?(:store)
end