Class: Google::Apis::CloudtasksV2::ListTasksResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2::ListTasksResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2/classes.rb,
lib/google/apis/cloudtasks_v2/representations.rb,
lib/google/apis/cloudtasks_v2/representations.rb
Overview
Response message for listing tasks using ListTasks.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#tasks ⇒ Array<Google::Apis::CloudtasksV2::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.
Constructor Details
#initialize(**args) ⇒ ListTasksResponse
Returns a new instance of ListTasksResponse.
915 916 917 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 915 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 ListTasks with this value as the page_token. If the next_page_token is
empty, there are no more results.
Corresponds to the JSON property nextPageToken
908 909 910 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 908 def next_page_token @next_page_token end |
#tasks ⇒ Array<Google::Apis::CloudtasksV2::Task>
The list of tasks.
Corresponds to the JSON property tasks
913 914 915 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 913 def tasks @tasks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
920 921 922 923 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 920 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tasks = args[:tasks] if args.key?(:tasks) end |