UNPKG

@tomei/product

Version:

NestJS package for product module

20 lines (19 loc) 472 B
import { ProductVariantType } from '../enum/product-variant.enum'; export interface IProductVariantUpdate { Name: string; Description: string; SKU: string; Size?: string; Colour?: string; Type: ProductVariantType; Level: number; ParentId?: string; MinWeight?: number; MaxWeight?: number; MinWidth?: number; MaxWidth?: number; MinHeight?: number; MaxHeight?: number; MinLength?: number; MaxLength?: number; }