class Google::Apis::BooksV1::Volume::SaleInfo::RetailPrice
The actual selling price of the book. This is the same as the suggested retail or list price unless there are offers or discounts on this volume. (In LITE projection.)
Attributes
amount[RW]
Amount in the currency listed below. (In LITE projection.) Corresponds to the JSON property `amount` @return [Float]
currency_code[RW]
An ISO 4217, three-letter currency code. (In LITE projection.) Corresponds to the JSON property `currencyCode` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/books_v1/classes.rb, line 3154 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/books_v1/classes.rb, line 3159 def update!(**args) @amount = args[:amount] if args.key?(:amount) @currency_code = args[:currency_code] if args.key?(:currency_code) end