UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

23 lines 670 B
import { SafeKeyValueString } from '../../complexType/SafeKeyValueString'; /** List of documents added on your account */ export interface Document { /** Document creation */ creationDate: string; /** Document expiration */ expirationDate?: string; /** URL used to get document */ getUrl: string; /** Document id */ id: string; /** Document name */ name: string; /** URL used to put document */ putUrl: string; /** Document size (in bytes) */ size: number; /** Document tags */ tags: SafeKeyValueString[]; /** Document validation */ validationDate?: string; } //# sourceMappingURL=Document.d.ts.map