/*! * Copyright Adaptavist 2025 (c) All rights reserved */ export interface RestoreStatus { /** * Specifies whether the object is currently being restored. */ IsRestoreInProgress?: boolean; /** * Indicates when the restored copy will expire. This value is populated only if the object has already been restored. */ RestoreExpiryDate?: string; } //# sourceMappingURL=RestoreStatus.d.ts.map