import { TranscriptFileStatusEnum } from './TranscriptFileStatusEnum';
/** Telephony API related to the transcript file hosted */
export interface TranscriptFile {
    /** The transcript filename */
    filename?: string;
    /** The status of the request */
    status: TranscriptFileStatusEnum;
    /** The download URL for the transcript file */
    url?: string;
    /** The expiration date for the download URL */
    urlExpirationDatetime?: string;
}
//# sourceMappingURL=TranscriptFile.d.ts.map