export interface IVendorOrder { readonly _id?: string | any; vendorId: string | any; orderId: string; providerOrderId?: string; /** * If true, the order has been sent to the pos system. * Otherwise it was not sent. */ isLiveMode: boolean; }