Skip to main content
This interface defines the structure of the request body used when updating an existing Workspace.
export interface UpdateWorkspaceRequest {
    name?: string;
    description?: string;
}

Properties

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