mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
19 lines (18 loc) • 399 B
TypeScript
export interface IOrderItemOptionV3 {
ean: string;
externalCode: string;
id: string;
index: number;
name: string;
options: IOrderItemOptionV3[];
optionsPrice: number;
preparationPlaceId: string;
price: number;
productId: string;
quantity: number;
skill: string;
totalPrice: number;
unit: string;
weight: number;
questionId?: string;
}