class Google::Apis::CloudschedulerV1beta1::ListJobsResponse
Response message for listing jobs using ListJobs.
Attributes
jobs[RW]
The list of jobs. Corresponds to the JSON property `jobs` @return [Array<Google::Apis::CloudschedulerV1beta1::Job>]
next_page_token[RW]
A token to retrieve next page of results. Pass this value in the page_token field in the subsequent call to ListJobs to retrieve the next page of results. If this is empty it indicates that there are no more results through which to paginate. The page token is valid for only 2 hours. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudscheduler_v1beta1/classes.rb, line 447 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudscheduler_v1beta1/classes.rb, line 452 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end