/**
 * @example
 *     {
 *         name: "updated-customer-support",
 *         default_agent: "another-agent"
 *     }
 */
export interface UpdateProjectRequest {
    /** The name of the project. Can only contain lowercase letters, numbers and hyphens. Must be unique within the workspace. */
    name?: string;
    /** The name of the new project's default agent. Set to `null` to remove the default agent. */
    default_agent?: string | null;
    /** Maximum number of concurrent conversations allowed for this project. When `null`, the workspace `max_active_conversations` limit is used. */
    max_active_conversations?: number | null;
}
