Class: Google::Apis::LibraryagentV1::GoogleExampleLibraryagentV1ListBooksResponse
- Inherits:
-
Object
- Object
- Google::Apis::LibraryagentV1::GoogleExampleLibraryagentV1ListBooksResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/libraryagent_v1/classes.rb,
lib/google/apis/libraryagent_v1/representations.rb,
lib/google/apis/libraryagent_v1/representations.rb
Overview
Response message for LibraryAgent.ListBooks.
Instance Attribute Summary collapse
-
#books ⇒ Array<Google::Apis::LibraryagentV1::GoogleExampleLibraryagentV1Book>
The list of books.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleExampleLibraryagentV1ListBooksResponse
constructor
A new instance of GoogleExampleLibraryagentV1ListBooksResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleExampleLibraryagentV1ListBooksResponse
Returns a new instance of GoogleExampleLibraryagentV1ListBooksResponse.
80 81 82 |
# File 'lib/google/apis/libraryagent_v1/classes.rb', line 80 def initialize(**args) update!(**args) end |
Instance Attribute Details
#books ⇒ Array<Google::Apis::LibraryagentV1::GoogleExampleLibraryagentV1Book>
The list of books.
Corresponds to the JSON property books
71 72 73 |
# File 'lib/google/apis/libraryagent_v1/classes.rb', line 71 def books @books end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in the
ListBooksRequest.page_token field in the subsequent call to ListBooks
method
to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
78 79 80 |
# File 'lib/google/apis/libraryagent_v1/classes.rb', line 78 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
85 86 87 88 |
# File 'lib/google/apis/libraryagent_v1/classes.rb', line 85 def update!(**args) @books = args[:books] if args.key?(:books) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |