Class: Google::Apis::PartnersV2::AvailableOffer
- Inherits:
-
Object
- Object
- Google::Apis::PartnersV2::AvailableOffer
- 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
Available Offers to be distributed.
Instance Attribute Summary collapse
-
#available ⇒ Fixnum
The number of codes for this offer that are available for distribution.
-
#country_offer_infos ⇒ Array<Google::Apis::PartnersV2::CountryOfferInfo>
Offer info by country.
-
#description ⇒ String
Description of the offer.
-
#id ⇒ Fixnum
ID of this offer.
-
#max_account_age ⇒ Fixnum
The maximum age of an account [in days] to be eligible.
-
#name ⇒ String
Name of the offer.
-
#offer_level ⇒ String
Level of this offer.
-
#offer_type ⇒ String
Type of offer.
-
#qualified_customer ⇒ Array<Google::Apis::PartnersV2::OfferCustomer>
Customers who qualify for this offer.
-
#qualified_customers_complete ⇒ Boolean
(also: #qualified_customers_complete?)
Whether or not the list of qualified customers is definitely complete.
-
#show_special_offer_copy ⇒ Boolean
(also: #show_special_offer_copy?)
Should special text be shown on the offers page.
-
#terms ⇒ String
Terms of the offer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AvailableOffer
constructor
A new instance of AvailableOffer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AvailableOffer
Returns a new instance of AvailableOffer
2193 2194 2195 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2193 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available ⇒ Fixnum
The number of codes for this offer that are available for distribution.
Corresponds to the JSON property available
2186 2187 2188 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2186 def available @available end |
#country_offer_infos ⇒ Array<Google::Apis::PartnersV2::CountryOfferInfo>
Offer info by country.
Corresponds to the JSON property countryOfferInfos
2155 2156 2157 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2155 def country_offer_infos @country_offer_infos end |
#description ⇒ String
Description of the offer.
Corresponds to the JSON property description
2191 2192 2193 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2191 def description @description end |
#id ⇒ Fixnum
ID of this offer.
Corresponds to the JSON property id
2150 2151 2152 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2150 def id @id end |
#max_account_age ⇒ Fixnum
The maximum age of an account [in days] to be eligible.
Corresponds to the JSON property maxAccountAge
2165 2166 2167 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2165 def max_account_age @max_account_age end |
#name ⇒ String
Name of the offer.
Corresponds to the JSON property name
2139 2140 2141 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2139 def name @name end |
#offer_level ⇒ String
Level of this offer.
Corresponds to the JSON property offerLevel
2134 2135 2136 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2134 def offer_level @offer_level end |
#offer_type ⇒ String
Type of offer.
Corresponds to the JSON property offerType
2160 2161 2162 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2160 def offer_type @offer_type end |
#qualified_customer ⇒ Array<Google::Apis::PartnersV2::OfferCustomer>
Customers who qualify for this offer.
Corresponds to the JSON property qualifiedCustomer
2170 2171 2172 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2170 def qualified_customer @qualified_customer end |
#qualified_customers_complete ⇒ Boolean Also known as: qualified_customers_complete?
Whether or not the list of qualified customers is definitely complete.
Corresponds to the JSON property qualifiedCustomersComplete
2144 2145 2146 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2144 def qualified_customers_complete @qualified_customers_complete end |
#show_special_offer_copy ⇒ Boolean Also known as: show_special_offer_copy?
Should special text be shown on the offers page.
Corresponds to the JSON property showSpecialOfferCopy
2180 2181 2182 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2180 def show_special_offer_copy @show_special_offer_copy end |
#terms ⇒ String
Terms of the offer.
Corresponds to the JSON property terms
2175 2176 2177 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2175 def terms @terms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 |
# File 'generated/google/apis/partners_v2/classes.rb', line 2198 def update!(**args) @offer_level = args[:offer_level] if args.key?(:offer_level) @name = args[:name] if args.key?(:name) @qualified_customers_complete = args[:qualified_customers_complete] if args.key?(:qualified_customers_complete) @id = args[:id] if args.key?(:id) @country_offer_infos = args[:country_offer_infos] if args.key?(:country_offer_infos) @offer_type = args[:offer_type] if args.key?(:offer_type) @max_account_age = args[:max_account_age] if args.key?(:max_account_age) @qualified_customer = args[:qualified_customer] if args.key?(:qualified_customer) @terms = args[:terms] if args.key?(:terms) @show_special_offer_copy = args[:show_special_offer_copy] if args.key?(:show_special_offer_copy) @available = args[:available] if args.key?(:available) @description = args[:description] if args.key?(:description) end |