class Google::Apis::CloudtasksV2beta3::ListTasksResponse
Response message for listing tasks using ListTasks.
Attributes
next_page_token[RW]
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` @return [String]
tasks[RW]
The list of tasks. Corresponds to the JSON property `tasks` @return [Array<Google::Apis::CloudtasksV2beta3::Task>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudtasks_v2beta3/classes.rb, line 664 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudtasks_v2beta3/classes.rb, line 669 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tasks = args[:tasks] if args.key?(:tasks) end