/** Dumps */
export interface Dump {
    /** Creation date of the dump */
    creationDate: string;
    /** Dump of this database name */
    databaseName: string;
    /** Automatic deletion date of the dump */
    deletionDate: string;
    /** Dump id */
    dumpId: number;
    /** Dump orphan flag (true if database does not exists) */
    orphan: boolean;
    /** Dump URL access */
    url: string;
}
//# sourceMappingURL=Dump.d.ts.map