/**
 * 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;
}
