Class: Google::Apis::Adexchangebuyer2V2beta1::Price
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::Price
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
Represents a price and a pricing type for a product / deal.
Instance Attribute Summary collapse
-
#amount ⇒ Google::Apis::Adexchangebuyer2V2beta1::Money
Represents an amount of money with its currency type.
-
#pricing_type ⇒ String
The pricing type for the deal/product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Price
constructor
A new instance of Price.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Price
Returns a new instance of Price.
3084 3085 3086 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3084 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount ⇒ Google::Apis::Adexchangebuyer2V2beta1::Money
Represents an amount of money with its currency type.
Corresponds to the JSON property amount
3077 3078 3079 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3077 def amount @amount end |
#pricing_type ⇒ String
The pricing type for the deal/product. (default: CPM)
Corresponds to the JSON property pricingType
3082 3083 3084 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3082 def pricing_type @pricing_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3089 3090 3091 3092 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3089 def update!(**args) @amount = args[:amount] if args.key?(:amount) @pricing_type = args[:pricing_type] if args.key?(:pricing_type) end |