/** * One segment of a target transcript: a source segment plus its translation. */ export interface DubbingTargetTranscriptSegment { /** Stable identifier of the segment (from the source). */ id: string; /** Identifier of the segment's speaker. */ speakerId: string; /** Start time of the segment, in seconds. */ startS: number; /** End time of the segment, in seconds. */ endS: number; /** The source-language text of the segment. */ sourceText: string; /** The translated text, or null if not translated yet (needs translation). */ translation?: string; }