2021-10-27 12:59:43 +00:00
|
|
|
import { LineItem } from '../items/lineitem.model';
|
|
|
|
|
2021-10-25 20:01:06 +00:00
|
|
|
export interface Order {
|
|
|
|
_id?: string,
|
|
|
|
address: string,
|
|
|
|
session: string,
|
2021-10-27 12:59:43 +00:00
|
|
|
timestamp?: string,
|
2021-10-25 20:01:06 +00:00
|
|
|
closed: boolean,
|
2021-11-22 20:37:45 +00:00
|
|
|
currency: string,
|
2021-11-05 13:21:19 +00:00
|
|
|
price?: number,
|
2021-11-05 14:30:35 +00:00
|
|
|
total: number,
|
|
|
|
totalZec: number,
|
2022-05-24 18:18:46 +00:00
|
|
|
lines: LineItem[],
|
2022-08-10 19:12:28 +00:00
|
|
|
paid: boolean,
|
|
|
|
externalInvoice: string,
|
|
|
|
shortCode: string
|
2021-10-25 20:01:06 +00:00
|
|
|
}
|