Model
public struct Model : Codable, Equatable
Model.
-
When the status is
See moreavailable
, the model is ready to use.Declaration
Swift
public enum Status : String
-
When the status is
available
, the model is ready to use.Declaration
Swift
public var status: String?
-
Unique model ID.
Declaration
Swift
public var modelID: String?
-
ISO 639-1 code that indicates the language of the model.
Declaration
Swift
public var language: String?
-
Model description.
Declaration
Swift
public var description: String?
-
ID of the Watson Knowledge Studio workspace that deployed this model to Natural Language Understanding.
Declaration
Swift
public var workspaceID: String?
-
The model version, if it was manually provided in Watson Knowledge Studio.
Declaration
Swift
public var modelVersion: String?
-
Deprecated — use
model_version
.Declaration
Swift
public var version: String?
-
The description of the version, if it was manually provided in Watson Knowledge Studio.
Declaration
Swift
public var versionDescription: String?
-
A dateTime indicating when the model was created.
Declaration
Swift
public var created: Date?