import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestTranslationNameCreateOrUpdate } from './requestTranslationNameCreateOrUpdate'; export interface RequestProductCreateOrUpdate { name: string; category: string; subCategory: string; image?: string; regionalNames?: RequestTranslationNameCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; }