Class: Google::Apis::CloudtasksV2beta2::ListTasksResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta2::ListTasksResponse
- Defined in:
- generated/google/apis/cloudtasks_v2beta2/classes.rb,
generated/google/apis/cloudtasks_v2beta2/representations.rb,
generated/google/apis/cloudtasks_v2beta2/representations.rb
Overview
Response message for listing tasks using CloudTasks.ListTasks.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#tasks ⇒ Array<Google::Apis::CloudtasksV2beta2::Task>
The list of tasks.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTasksResponse
constructor
A new instance of ListTasksResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTasksResponse
Returns a new instance of ListTasksResponse
710 711 712 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 710 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results.
To return the next page of results, call
CloudTasks.ListTasks with this value as the
ListTasksRequest.page_token.
If the next_page_token is empty, there are no more results.
Corresponds to the JSON property nextPageToken
NOTE: Values are automatically base64 encoded/decoded in the client library.
703 704 705 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 703 def next_page_token @next_page_token end |
#tasks ⇒ Array<Google::Apis::CloudtasksV2beta2::Task>
The list of tasks.
Corresponds to the JSON property tasks
708 709 710 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 708 def tasks @tasks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
715 716 717 718 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 715 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tasks = args[:tasks] if args.key?(:tasks) end |