cecon-interfaces
Version:
Interfaces de Projetos Cecon
18 lines (17 loc) • 370 B
TypeScript
export interface IOrderItemOption {
ean: string;
externalCode: string;
id: string;
index: number;
name: string;
options: IOrderItemOption[];
optionsPrice: number;
preparationPlaceId: string;
price: number;
productId: string;
quantity: number;
skill: string;
totalPrice: number;
unit: string;
weight: number;
}