/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; /** * Detailed response model for a batch call including all recipients. */ export interface BatchCallDetailedResponse { id: string; phone_number_id: string; name: string; agent_id: string; created_at_unix: number; scheduled_time_unix: number; total_calls_dispatched: number; total_calls_scheduled: number; last_updated_at_unix: number; status: ElevenLabs.BatchCallStatus; agent_name: string; recipients: ElevenLabs.OutboundCallRecipientResponseModel[]; }