mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
20 lines (19 loc) • 408 B
TypeScript
export interface IPayioProduct {
active: boolean;
brand: string;
code: string;
companyId: string;
containerId: string | null;
createdAt: Date;
id: string;
name: string;
price: number;
quantityPackaging: number;
tags: string[];
sandbox: boolean;
thumbnail: string | null;
unit: string;
ncm: string | null;
updatedAt: Date;
weight: number;
}