export interface SpeechToTextCharacterResponseModel {
    /** The character that was transcribed. */
    text: string;
    /** The start time of the character in seconds. */
    start?: number;
    /** The end time of the character in seconds. */
    end?: number;
}
