Class: Google::Apis::BooksV1::Volume2
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Volume2
- 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
Instance Attribute Summary collapse
-
#items ⇒ Array<Google::Apis::BooksV1::Volume>
A list of volumes.
-
#kind ⇒ String
Resource type.
-
#next_page_token ⇒ String
Corresponds to the JSON property
nextPageToken
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Volume2
constructor
A new instance of Volume2.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Volume2
Returns a new instance of Volume2
3857 3858 3859 |
# File 'generated/google/apis/books_v1/classes.rb', line 3857 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::BooksV1::Volume>
A list of volumes.
Corresponds to the JSON property items
3845 3846 3847 |
# File 'generated/google/apis/books_v1/classes.rb', line 3845 def items @items end |
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
3850 3851 3852 |
# File 'generated/google/apis/books_v1/classes.rb', line 3850 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
3855 3856 3857 |
# File 'generated/google/apis/books_v1/classes.rb', line 3855 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3862 3863 3864 3865 3866 |
# File 'generated/google/apis/books_v1/classes.rb', line 3862 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |