class Google::Apis::MlV1::GoogleCloudMlV1ListVersionsResponse

Response message for the ListVersions method.

Attributes

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]

versions[RW]

The list of versions. Corresponds to the JSON property `versions` @return [Array<Google::Apis::MlV1::GoogleCloudMlV1Version>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 1615
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 1620
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @versions = args[:versions] if args.key?(:versions)
end