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