This interface defines the structure of the request body used when creating a new Workspace.
export interface CreateWorkspaceRequest {
    name: string;
    description?: string;
}

Properties

  • name (string): The name of the workspace.
  • description (string, optional): A description of the workspace.