Class: Google::Apis::PartnersV2::CountryOfferInfo

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

Overview

Offer info by country.

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

Returns a new instance of CountryOfferInfo



665
666
667
# File 'generated/google/apis/partners_v2/classes.rb', line 665

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

Instance Attribute Details

#get_y_amountString

(localized) Get Y amount for that country's offer. Corresponds to the JSON property getYAmount

Returns:

  • (String)


648
649
650
# File 'generated/google/apis/partners_v2/classes.rb', line 648

def get_y_amount
  @get_y_amount
end

#offer_country_codeString

Country code for which offer codes may be requested. Corresponds to the JSON property offerCountryCode

Returns:

  • (String)


653
654
655
# File 'generated/google/apis/partners_v2/classes.rb', line 653

def offer_country_code
  @offer_country_code
end

#offer_typeString

Type of offer country is eligible for. Corresponds to the JSON property offerType

Returns:

  • (String)


658
659
660
# File 'generated/google/apis/partners_v2/classes.rb', line 658

def offer_type
  @offer_type
end

#spend_x_amountString

(localized) Spend X amount for that country's offer. Corresponds to the JSON property spendXAmount

Returns:

  • (String)


663
664
665
# File 'generated/google/apis/partners_v2/classes.rb', line 663

def spend_x_amount
  @spend_x_amount
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



670
671
672
673
674
675
# File 'generated/google/apis/partners_v2/classes.rb', line 670

def update!(**args)
  @get_y_amount = args[:get_y_amount] if args.key?(:get_y_amount)
  @offer_country_code = args[:offer_country_code] if args.key?(:offer_country_code)
  @offer_type = args[:offer_type] if args.key?(:offer_type)
  @spend_x_amount = args[:spend_x_amount] if args.key?(:spend_x_amount)
end