@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 515 B
TypeScript
import { RetrievalStateEnum } from './RetrievalStateEnum';
/** ContainerObject */
export interface ContainerObject {
/** Object content type */
contentType: string;
/** Last modification date */
lastModified: string;
/** Object name */
name: string;
/** Object retrieval delay (when unsealing) */
retrievalDelay: number;
/** Object retrieval state */
retrievalState: RetrievalStateEnum;
/** Object size */
size: number;
}
//# sourceMappingURL=ContainerObject.d.ts.map