Class: Google::Apis::BooksV1::Offers
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BooksV1::Offers
 
 
- 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: Item
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::BooksV1::Offers::Item> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of offers.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Resource type.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Offers 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Offers.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Offers
Returns a new instance of Offers
      2179 2180 2181  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 2179 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#items ⇒ Array<Google::Apis::BooksV1::Offers::Item>
A list of offers.
Corresponds to the JSON property items
      2172 2173 2174  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 2172 def items @items end  | 
  
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
      2177 2178 2179  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 2177 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2184 2185 2186 2187  | 
    
      # File 'generated/google/apis/books_v1/classes.rb', line 2184 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end  |