import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestIndentItemCreateOrUpdate } from './requestIndentItemCreateOrUpdate'; export interface RequestIndentCreateOrUpdate { date: string; operationCenter: string; customer?: string; items: RequestIndentItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; automatic?: boolean; }