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