UNPKG

@tomei/product

Version:

NestJS package for product module

21 lines (19 loc) 441 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; }