import { Document } from 'mongoose'; import { IDefaultAttributes } from './commonInterface'; import { PRODUCT_META_STATUS } from '../constants'; export interface IProductMetaModelAttributes extends IDefaultAttributes, Document { id: string; companyId: string; categoryId: string; subCategoryId: string; productName: string; shortName: string; sku: string; brand: string; shortDescription?: string; description?: string; sellingPrice: number; mrp: number; thumbnail?: string; status: PRODUCT_META_STATUS; }