import type * as ElevenLabs from "../index"; export interface DubbingMetadataResponse { /** The ID of the dubbing project. */ dubbingId: string; /** The name of the dubbing project. */ name: string; /** The state this dub is in. */ status: string; /** Once dubbing has completed, the ISO-639-1 code of the original media's source language. */ sourceLanguage?: string; /** The ISO-639-1 code of the languages this media has been dubbed into. */ targetLanguages: string[]; /** Whether this dubbing project is editable in Dubbing Studio. */ editable?: boolean; /** Timestamp this dub was created. */ createdAt: Date; /** Metadata, such as the length in seconds and content type, of the dubbed content. */ mediaMetadata?: ElevenLabs.DubbingMediaMetadata; /** Error message indicate, if this dub has failed, what happened. */ error?: string; }