import type * as ElevenLabs from "../index"; export interface CreateExotelPhoneNumberRequest { /** Phone number */ phoneNumber: string; /** Label for the phone number */ label: string; /** This field is deprecated and will be removed in the future. Whether this phone number supports inbound calls */ supportsInbound?: boolean; /** This field is deprecated and will be removed in the future. Whether this phone number supports outbound calls */ supportsOutbound?: boolean; /** Exotel Account SID */ accountSid: string; /** Exotel API Key */ apiKey: string; /** Exotel API Token */ apiToken: string; /** Exotel region-specific API host */ apiSubdomain: ElevenLabs.ExotelApiSubdomain; /** Exotel applet identifier used in Calls/connect */ appId: string; /** Optional full applet URL override. Defaults to Exotel start_voice URL derived from account SID and app ID. */ appletUrl?: string; }