@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 501 B
TypeScript
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