Class: Google::Apis::AdexchangebuyerV1_4::Price

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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_microsFloat

The price value in micros. Corresponds to the JSON property amountMicros

Returns:

  • (Float)


2793
2794
2795
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2793

def amount_micros
  @amount_micros
end

#currency_codeString

The currency code for the price. Corresponds to the JSON property currencyCode

Returns:

  • (String)


2798
2799
2800
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2798

def currency_code
  @currency_code
end

#expected_cpm_microsFloat

In case of CPD deals, the expected CPM in micros. Corresponds to the JSON property expectedCpmMicros

Returns:

  • (Float)


2803
2804
2805
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2803

def expected_cpm_micros
  @expected_cpm_micros
end

#pricing_typeString

The pricing type for the deal/product. Corresponds to the JSON property pricingType

Returns:

  • (String)


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