Class: Google::Apis::BooksV1::Volume::SaleInfo::Offer::ListPrice
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Volume::SaleInfo::Offer::ListPrice
- 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 list (=undiscounted) 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) ⇒ ListPrice
constructor
A new instance of ListPrice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListPrice
Returns a new instance of ListPrice
3259 3260 3261 |
# File 'generated/google/apis/books_v1/classes.rb', line 3259 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount_in_micros ⇒ Float
Corresponds to the JSON property amountInMicros
3252 3253 3254 |
# File 'generated/google/apis/books_v1/classes.rb', line 3252 def amount_in_micros @amount_in_micros end |
#currency_code ⇒ String
Corresponds to the JSON property currencyCode
3257 3258 3259 |
# File 'generated/google/apis/books_v1/classes.rb', line 3257 def currency_code @currency_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3264 3265 3266 3267 |
# File 'generated/google/apis/books_v1/classes.rb', line 3264 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 |