/**
 * @example
 *     {
 *         agent_id: "agent_12cf6e88-c254-4d3e-a149-a7f1bdd22783",
 *         ttl_seconds: 30
 *     }
 */
export interface CreateConversationTokenRequest {
    /** ID of the agent the conversation token is scoped to. */
    agent_id: string;
    /** Time-to-live for the conversation token in seconds. */
    ttl_seconds?: number;
}
