mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
22 lines (21 loc) • 580 B
TypeScript
import { IPayioGlobalProduct } from '../interfaces/i-global-products';
export declare class PayioGlobalProductEntity implements IPayioGlobalProduct {
active: boolean;
avgPrice: number;
brand: string;
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>);
}