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
| 3309 3310 3311 | # File 'generated/google/apis/books_v1/classes.rb', line 3309 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#amount_in_micros ⇒ Float
Corresponds to the JSON property amountInMicros
| 3302 3303 3304 | # File 'generated/google/apis/books_v1/classes.rb', line 3302 def amount_in_micros @amount_in_micros end | 
#currency_code ⇒ String
Corresponds to the JSON property currencyCode
| 3307 3308 3309 | # File 'generated/google/apis/books_v1/classes.rb', line 3307 def currency_code @currency_code end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3314 3315 3316 3317 | # File 'generated/google/apis/books_v1/classes.rb', line 3314 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 |