/**
 * @example
 *     {
 *         agent: "support-agent"
 *     }
 */
export interface ReplayConversationRequest {
    /** Name of the agent to replay the conversation with. Defaults to the agent originally associated with the conversation. */
    agent?: string;
}
