Class: Google::Apis::BooksV1::Volume::SaleInfo::Offer
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BooksV1::Volume::SaleInfo::Offer
 
 
- 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 
Defined Under Namespace
Classes: ListPrice, RentalDuration, RetailPrice
Instance Attribute Summary collapse
- 
  
    
      #finsky_offer_type  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The finsky offer type (e.g., PURCHASE=0 RENTAL=3) Corresponds to the JSON property
finskyOfferType. - 
  
    
      #giftable  ⇒ Boolean 
    
    
      (also: #giftable?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the offer is giftable.
 - 
  
    
      #list_price  ⇒ Google::Apis::BooksV1::Volume::SaleInfo::Offer::ListPrice 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Offer list (=undiscounted) price in Micros.
 - 
  
    
      #rental_duration  ⇒ Google::Apis::BooksV1::Volume::SaleInfo::Offer::RentalDuration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The rental duration (for rental offers only).
 - 
  
    
      #retail_price  ⇒ Google::Apis::BooksV1::Volume::SaleInfo::Offer::RetailPrice 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Offer retail (=discounted) price in Micros Corresponds to the JSON property
retailPrice. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Offer 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Offer.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Offer
Returns a new instance of Offer
      3239 3240 3241  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3239 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#finsky_offer_type ⇒ Fixnum
The finsky offer type (e.g., PURCHASE=0 RENTAL=3)
Corresponds to the JSON property finskyOfferType
      3216 3217 3218  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3216 def finsky_offer_type @finsky_offer_type end  | 
  
#giftable ⇒ Boolean Also known as: giftable?
Indicates whether the offer is giftable.
Corresponds to the JSON property giftable
      3221 3222 3223  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3221 def giftable @giftable end  | 
  
#list_price ⇒ Google::Apis::BooksV1::Volume::SaleInfo::Offer::ListPrice
Offer list (=undiscounted) price in Micros.
Corresponds to the JSON property listPrice
      3227 3228 3229  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3227 def list_price @list_price end  | 
  
#rental_duration ⇒ Google::Apis::BooksV1::Volume::SaleInfo::Offer::RentalDuration
The rental duration (for rental offers only).
Corresponds to the JSON property rentalDuration
      3232 3233 3234  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3232 def rental_duration @rental_duration end  | 
  
#retail_price ⇒ Google::Apis::BooksV1::Volume::SaleInfo::Offer::RetailPrice
Offer retail (=discounted) price in Micros
Corresponds to the JSON property retailPrice
      3237 3238 3239  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3237 def retail_price @retail_price end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3244 3245 3246 3247 3248 3249 3250  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 3244 def update!(**args) @finsky_offer_type = args[:finsky_offer_type] if args.key?(:finsky_offer_type) @giftable = args[:giftable] if args.key?(:giftable) @list_price = args[:list_price] if args.key?(:list_price) @rental_duration = args[:rental_duration] if args.key?(:rental_duration) @retail_price = args[:retail_price] if args.key?(:retail_price) end  |