export interface VerifiedVoiceLanguageResponseModel { /** The language of the voice. */ language: string; /** The voice's model ID. */ modelId: string; /** The voice's accent, if applicable. */ accent?: string; /** The voice's locale, if applicable. */ locale?: string; /** The voice's preview URL, if applicable. */ previewUrl?: string; }