UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 609 B
import { StorageClassEnum } from './storage/StorageClassEnum'; /** Object */ export interface StorageObject { /** ETag */ etag: string; /** Whether this object is a delete marker */ isDeleteMarker?: boolean; /** Whether this is the latest version of the object */ isLatest?: boolean; /** Key */ key: string; /** Last modification date */ lastModified: string; /** Size (bytes) */ size: number; /** Storage class */ storageClass?: StorageClassEnum; /** Version ID of the object */ versionId?: string; } //# sourceMappingURL=StorageObject.d.ts.map