UNPKG

pl4y-data-library

Version:

This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.

18 lines (17 loc) 472 B
import { ProductCategory } from "../../../enums/product-categories.enum"; import { ProductUOM } from "../../../enums/product-uom.enum"; export declare class ProductDTO { id?: string; name: string; brand: string; category: ProductCategory; regulationType?: string; minimumAge?: number; requiresVerification?: boolean; isWeighable?: boolean; quantity: number; weight?: number; uom: ProductUOM; upc: string; sku: string; }