/** * One segment of a source transcript. */ export interface DubbingTranscriptSegment { /** Stable identifier of the segment, used to address it in edit requests. */ id: string; /** The transcribed text of the segment. */ text: 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 caller-supplied external ID for this segment, if one was provided. */ externalId?: string; }