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 more...
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
4285 4286 4287 |
# File 'generated/google/apis/books_v1/classes.rb', line 4285 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
4267 4268 4269 |
# File 'generated/google/apis/books_v1/classes.rb', line 4267 def issue @issue end |
#order_number ⇒ Fixnum
The book order number in the series.
Corresponds to the JSON property orderNumber
4272 4273 4274 |
# File 'generated/google/apis/books_v1/classes.rb', line 4272 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
4278 4279 4280 |
# File 'generated/google/apis/books_v1/classes.rb', line 4278 def series_book_type @series_book_type end |
#series_id ⇒ String
The series id.
Corresponds to the JSON property seriesId
4283 4284 4285 |
# File 'generated/google/apis/books_v1/classes.rb', line 4283 def series_id @series_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4290 4291 4292 4293 4294 4295 |
# File 'generated/google/apis/books_v1/classes.rb', line 4290 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 |