@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 450 B
TypeScript
/** Document linked to a telephony service */
export interface Document {
/** Description of the document */
description?: string;
/** Identifier of the document */
id: string;
/** Name of the document */
name: string;
/** Document size (in bytes) */
size: number;
/** URL to get document */
url: string;
/** Document validation date */
validationDate?: string;
}
//# sourceMappingURL=Document.d.ts.map