class Google::Apis::MlV1::GoogleCloudMlV1ListJobsResponse
Response message for the ListJobs method.
Attributes
jobs[RW]
The list of jobs. Corresponds to the JSON property `jobs` @return [Array<Google::Apis::MlV1::GoogleCloudMlV1Job>]
next_page_token[RW]
Optional. Pass this token as the `page_token` field of the request for a subsequent call. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 1465 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ml_v1/classes.rb, line 1470 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end