Workspace

public struct Workspace : Codable, Equatable

Workspace.

  • The current status of the workspace.

    See more

    Declaration

    Swift

    public enum Status : String
  • The name of the workspace. This string cannot contain carriage return, newline, or tab characters.

    Declaration

    Swift

    public var name: String
  • The description of the workspace. This string cannot contain carriage return, newline, or tab characters.

    Declaration

    Swift

    public var description: String?
  • The language of the workspace.

    Declaration

    Swift

    public var language: String
  • The workspace ID of the workspace.

    Declaration

    Swift

    public var workspaceID: String
  • An array of objects describing the dialog nodes in the workspace.

    Declaration

    Swift

    public var dialogNodes: [DialogNode]?
  • An array of objects defining input examples that have been marked as irrelevant input.

    Declaration

    Swift

    public var counterexamples: [Counterexample]?
  • The timestamp for creation of the object.

    Declaration

    Swift

    public var created: Date?
  • The timestamp for the most recent update to the object.

    Declaration

    Swift

    public var updated: Date?
  • Any metadata related to the workspace.

    Declaration

    Swift

    public var metadata: [String : JSON]?
  • Whether training data from the workspace (including artifacts such as intents and entities) can be used by IBM for general service improvements. true indicates that workspace training data is not to be used.

    Declaration

    Swift

    public var learningOptOut: Bool
  • Global settings for the workspace.

    Declaration

    Swift

    public var systemSettings: WorkspaceSystemSettings?
  • The current status of the workspace.

    Declaration

    Swift

    public var status: String?
  • Undocumented

    Declaration

    Swift

    public var webhooks: [Webhook]?
  • An array of intents.

    Declaration

    Swift

    public var intents: [Intent]?
  • An array of objects describing the entities for the workspace.

    Declaration

    Swift

    public var entities: [Entity]?