cecon-interfaces
Version:
Interfaces de Projetos Cecon
20 lines (19 loc) • 518 B
TypeScript
import { IOrderItemOption } from '../interfaces';
export declare class OrderItemOptionEntity implements IOrderItemOption {
ean: string;
externalCode: string;
id: string;
index: number;
name: string;
options: OrderItemOptionEntity[];
optionsPrice: number;
preparationPlaceId: string;
price: number;
productId: string;
quantity: number;
skill: string;
totalPrice: number;
unit: string;
weight: number;
constructor(data?: Partial<OrderItemOptionEntity>);
}