import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestVirtualInventoryItemCreateOrUpdate } from './requestVirtualInventoryItemCreateOrUpdate'; export interface RequestVirtualInventoryCreateOrUpdate { date: string; operationCenter: string; code?: string; items: RequestVirtualInventoryItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }