phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 645 B
text/typescript
/**
* @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;
}