import { StatusEnum } from './copy/StatusEnum';
/** Database copy */
export interface Copy {
    /** Creation date of the database copy */
    creationDate: string;
    /** Expiration date of the database copy */
    expirationDate?: string;
    /** Database copy ID */
    id: string;
    /** Last update of the database copy */
    lastUpdate: string;
    /** Database copy status */
    status: StatusEnum;
}
//# sourceMappingURL=Copy.d.ts.map