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
3996 3997 3998 |
# File 'generated/google/apis/books_v1/classes.rb', line 3996 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
3984 3985 3986 |
# File 'generated/google/apis/books_v1/classes.rb', line 3984 def items @items end |
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
3989 3990 3991 |
# File 'generated/google/apis/books_v1/classes.rb', line 3989 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
3994 3995 3996 |
# File 'generated/google/apis/books_v1/classes.rb', line 3994 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4001 4002 4003 4004 4005 |
# File 'generated/google/apis/books_v1/classes.rb', line 4001 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 |