class Google::Apis::BooksV1::Volume::SaleInfo::ListPrice

Suggested retail price. (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 lib/google/apis/books_v1/classes.rb, line 3410
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/books_v1/classes.rb, line 3415
def update!(**args)
  @amount = args[:amount] if args.key?(:amount)
  @currency_code = args[:currency_code] if args.key?(:currency_code)
end