UNPKG

phonic

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [![npm shield](htt

16 lines (15 loc) 645 B
/** * @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; }