class Google::Apis::CloudtasksV2::ListQueuesResponse
Response message for ListQueues.
Attributes
next_page_token[RW]
A token to retrieve next page of results. To return the next page of results, call ListQueues with this value as the page_token. If the next_page_token
is empty, there are no more results. The page token is valid for only 2 hours. Corresponds to the JSON property `nextPageToken` @return [String]
queues[RW]
The list of queues. Corresponds to the JSON property `queues` @return [Array<Google::Apis::CloudtasksV2::Queue>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudtasks_v2/classes.rb, line 610 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_v2/classes.rb, line 615 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @queues = args[:queues] if args.key?(:queues) end