import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestStockTransferItemCreateOrUpdate } from './requestStockTransferItemCreateOrUpdate'; export interface RequestStockTransferCreateOrUpdate { dispatchDate: string; operationCenter: string; items: RequestStockTransferItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; amount?: number; }