Class: Google::Apis::BooksV1::Volume::SaleInfo::Offer::RetailPrice
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Volume::SaleInfo::Offer::RetailPrice
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/books_v1/classes.rb,
generated/google/apis/books_v1/representations.rb,
generated/google/apis/books_v1/representations.rb
Overview
Offer retail (=discounted) price in Micros
Instance Attribute Summary collapse
-
#amount_in_micros ⇒ Float
Corresponds to the JSON property
amountInMicros
. -
#currency_code ⇒ String
Corresponds to the JSON property
currencyCode
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RetailPrice
constructor
A new instance of RetailPrice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RetailPrice
Returns a new instance of RetailPrice
3322 3323 3324 |
# File 'generated/google/apis/books_v1/classes.rb', line 3322 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount_in_micros ⇒ Float
Corresponds to the JSON property amountInMicros
3315 3316 3317 |
# File 'generated/google/apis/books_v1/classes.rb', line 3315 def amount_in_micros @amount_in_micros end |
#currency_code ⇒ String
Corresponds to the JSON property currencyCode
3320 3321 3322 |
# File 'generated/google/apis/books_v1/classes.rb', line 3320 def currency_code @currency_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3327 3328 3329 3330 |
# File 'generated/google/apis/books_v1/classes.rb', line 3327 def update!(**args) @amount_in_micros = args[:amount_in_micros] if args.key?(:amount_in_micros) @currency_code = args[:currency_code] if args.key?(:currency_code) end |