Class: Google::Apis::BooksV1::Volumeseriesinfo::VolumeSeries
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BooksV1::Volumeseriesinfo::VolumeSeries
 
- 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: Issue
Instance Attribute Summary collapse
- 
  
    
      #issue  ⇒ Array<Google::Apis::BooksV1::Volumeseriesinfo::VolumeSeries::Issue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of issues. 
- 
  
    
      #order_number  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The book order number in the series. 
- 
  
    
      #series_book_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The book type in the context of series. 
- 
  
    
      #series_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The series id. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VolumeSeries 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of VolumeSeries. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VolumeSeries
Returns a new instance of VolumeSeries
| 4265 4266 4267 | # File 'generated/google/apis/books_v1/classes.rb', line 4265 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#issue ⇒ Array<Google::Apis::BooksV1::Volumeseriesinfo::VolumeSeries::Issue>
List of issues. Applicable only for Collection Edition and Omnibus.
Corresponds to the JSON property issue
| 4247 4248 4249 | # File 'generated/google/apis/books_v1/classes.rb', line 4247 def issue @issue end | 
#order_number ⇒ Fixnum
The book order number in the series.
Corresponds to the JSON property orderNumber
| 4252 4253 4254 | # File 'generated/google/apis/books_v1/classes.rb', line 4252 def order_number @order_number end | 
#series_book_type ⇒ String
The book type in the context of series. Examples - Single Issue, Collection
Edition, etc.
Corresponds to the JSON property seriesBookType
| 4258 4259 4260 | # File 'generated/google/apis/books_v1/classes.rb', line 4258 def series_book_type @series_book_type end | 
#series_id ⇒ String
The series id.
Corresponds to the JSON property seriesId
| 4263 4264 4265 | # File 'generated/google/apis/books_v1/classes.rb', line 4263 def series_id @series_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4270 4271 4272 4273 4274 4275 | # File 'generated/google/apis/books_v1/classes.rb', line 4270 def update!(**args) @issue = args[:issue] if args.key?(:issue) @order_number = args[:order_number] if args.key?(:order_number) @series_book_type = args[:series_book_type] if args.key?(:series_book_type) @series_id = args[:series_id] if args.key?(:series_id) end |