/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../../../../index"; /** * @example * {} */ export interface ConversationalAiGetConversationsRequest { /** * Used for fetching next page. Cursor is returned in the response. */ cursor?: string; /** * The id of the agent you're taking the action on. */ agent_id?: string; /** * The result of the success evaluation */ call_successful?: ElevenLabs.EvaluationSuccessResult; /** * Unix timestamp (in seconds) to filter conversations up to this start date. */ call_start_before_unix?: number; /** * Unix timestamp (in seconds) to filter conversations after to this start date. */ call_start_after_unix?: number; /** * How many conversations to return at maximum. Can not exceed 100, defaults to 30. */ page_size?: number; }