Class: Google::Apis::BooksV1::Series
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BooksV1::Series
 
- 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: Series
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Resource type. 
- 
  
    
      #series  ⇒ Array<Google::Apis::BooksV1::Series::Series> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property series.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Series 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Series. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Series
Returns a new instance of Series
| 2497 2498 2499 | # File 'generated/google/apis/books_v1/classes.rb', line 2497 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
| 2490 2491 2492 | # File 'generated/google/apis/books_v1/classes.rb', line 2490 def kind @kind end | 
#series ⇒ Array<Google::Apis::BooksV1::Series::Series>
Corresponds to the JSON property series
| 2495 2496 2497 | # File 'generated/google/apis/books_v1/classes.rb', line 2495 def series @series end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2502 2503 2504 2505 | # File 'generated/google/apis/books_v1/classes.rb', line 2502 def update!(**args) @kind = args[:kind] if args.key?(:kind) @series = args[:series] if args.key?(:series) end |