mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
22 lines (21 loc) • 553 B
TypeScript
import { IPayioProduct } from '../interfaces/i-products';
export declare class PayioProductEntity implements IPayioProduct {
active: boolean;
brand: string;
code: string;
companyId: string;
containerId: string | null;
createdAt: Date;
id: string;
name: string;
ncm: string | null;
price: number;
quantityPackaging: number;
sandbox: boolean;
tags: string[];
thumbnail: string | null;
unit: string;
updatedAt: Date;
weight: number;
constructor(data?: Partial<PayioProductEntity>);
}