@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 368 B
TypeScript
/** Object deletion error. */
export interface StorageObjectDeleteError {
/** Error code. */
code: string;
/** Error message. */
error: string;
/** Key of the object that failed to delete. */
key: string;
/** Version ID of the object that failed to delete. */
versionId?: string;
}
//# sourceMappingURL=StorageObjectDeleteError.d.ts.map