cecon-interfaces
Version:
Interfaces de Projetos Cecon
21 lines (20 loc) • 435 B
TypeScript
export interface IPayioGlobalProduct {
active: boolean;
avgPrice: number;
brand: string;
code: string;
createdAt: Date;
id: string;
lastPrices: number[];
maxPrice: number;
ncm: string | null;
cest: string | null;
minPrice: number;
name: string;
quantityPackaging: number;
tags: string[];
thumbnail: string | null;
unit: string;
updatedAt: Date;
weight: number;
}