class Google::Apis::MlV1::GoogleCloudMlV1ListModelsResponse
Response message for the ListModels method.
Attributes
models[RW]
The list of models. Corresponds to the JSON property `models` @return [Array<Google::Apis::MlV1::GoogleCloudMlV1Model>]
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 1517 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 1522 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end