Class: Google::Apis::CloudtasksV2beta2::ListTasksResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListTasksResponse

Returns a new instance of ListTasksResponse



624
625
626
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 624

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


617
618
619
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 617

def next_page_token
  @next_page_token
end

#tasksArray<Google::Apis::CloudtasksV2beta2::Task>

The list of tasks. Corresponds to the JSON property tasks



622
623
624
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 622

def tasks
  @tasks
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



629
630
631
632
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 629

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @tasks = args[:tasks] if args.key?(:tasks)
end