import type * as ElevenLabs from "../index"; export interface DubOrderItemRequest { /** The ID of the uploaded media file to dub. */ mediaId: ElevenLabs.MediaId; /** The language code of the source media (e.g. 'en', 'es'). */ sourceLanguage: string; /** List of target language codes to dub the media into. */ destinationLanguages: string[]; /** Whether to generate captions for the dubbed outputs. */ includeCaptions: boolean; /** Whether to generate captions for the source language. */ includeSourceCaptions: boolean; /** Optional free-text instructions for the dubbing team. */ instructions?: string; /** Whether captions should use SDH format, which includes descriptions for deaf and hard-of-hearing viewers. */ captionsSdh?: boolean; }