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) [ • 392 B
text/typescript
/**
* A third-party integration enabled for an agent.
*/
export interface AgentIntegration {
/** The connected account ID. */
account_id: string;
/** The connected account name. */
account_name: string | null;
/** The integration actions available to the agent. */
action_names: string[];
/** The slug identifying the integration app. */
app_slug: string;
}