UNPKG

cecon-interfaces

Version:
23 lines (22 loc) 605 B
import { IPayioGlobalProduct } from '../interfaces/i-global-products'; export declare class PayioGlobalProductEntity implements IPayioGlobalProduct { active: boolean; avgPrice: number; brand: string; cest: string | null; code: string; createdAt: Date; id: string; lastPrices: number[]; maxPrice: number; minPrice: number; name: string; ncm: string | null; quantityPackaging: number; tags: string[]; thumbnail: string | null; unit: string; updatedAt: Date; weight: number; constructor(data?: Partial<PayioGlobalProductEntity>); }