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
3976 3977 3978 |
# File 'generated/google/apis/books_v1/classes.rb', line 3976 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
3964 3965 3966 |
# File 'generated/google/apis/books_v1/classes.rb', line 3964 def items @items end |
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
3969 3970 3971 |
# File 'generated/google/apis/books_v1/classes.rb', line 3969 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
3974 3975 3976 |
# File 'generated/google/apis/books_v1/classes.rb', line 3974 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3981 3982 3983 3984 3985 |
# File 'generated/google/apis/books_v1/classes.rb', line 3981 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 |