Class: Google::Apis::AdexchangebuyerV1_4::Price
- Inherits:
-
Object
- Object
- Google::Apis::AdexchangebuyerV1_4::Price
- 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
Instance Attribute Summary collapse
-
#amount_micros ⇒ Float
The price value in micros.
-
#currency_code ⇒ String
The currency code for the price.
-
#expected_cpm_micros ⇒ Float
In case of CPD deals, the expected CPM in micros.
-
#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.
2810 2811 2812 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2810 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount_micros ⇒ Float
The price value in micros.
Corresponds to the JSON property amountMicros
2793 2794 2795 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2793 def amount_micros @amount_micros end |
#currency_code ⇒ String
The currency code for the price.
Corresponds to the JSON property currencyCode
2798 2799 2800 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2798 def currency_code @currency_code end |
#expected_cpm_micros ⇒ Float
In case of CPD deals, the expected CPM in micros.
Corresponds to the JSON property expectedCpmMicros
2803 2804 2805 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2803 def expected_cpm_micros @expected_cpm_micros end |
#pricing_type ⇒ String
The pricing type for the deal/product.
Corresponds to the JSON property pricingType
2808 2809 2810 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2808 def pricing_type @pricing_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2815 2816 2817 2818 2819 2820 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2815 def update!(**args) @amount_micros = args[:amount_micros] if args.key?(:amount_micros) @currency_code = args[:currency_code] if args.key?(:currency_code) @expected_cpm_micros = args[:expected_cpm_micros] if args.key?(:expected_cpm_micros) @pricing_type = args[:pricing_type] if args.key?(:pricing_type) end |