import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestVirtualFulfilmentItemCreateOrUpdate as RequestVirtualFulfilmentItemCreateOrUpdate } from './requestVirtualFulfilmentItemCreateOrUpdate'; export interface RequestVirtualFulfilmentCreateOrUpdate { dispatchDate: string; fromOperationCenter: string; usageDate: string; toOperationCenter: string; code?: string; items: RequestVirtualFulfilmentItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }