import { TOrder, TOrderStatus } from '@cromwell/core'; import { BaseEntity } from 'typeorm'; import { OrderMeta } from './meta/order-meta.entity'; import { Coupon } from './coupon.entity'; export declare class Order extends BaseEntity implements TOrder { id: number; status?: TOrderStatus | null; cart?: string | null; orderTotalPrice?: number | null; cartTotalPrice?: number | null; cartOldTotalPrice?: number | null; shippingPrice?: number | null; totalQnt?: number | null; userId?: number | null; customerName?: string | null; customerPhone?: string | null; customerEmail?: string | null; customerAddress?: string | null; shippingMethod?: string | null; paymentMethod?: string | null; customerComment?: string | null; currency?: string | null; createDate?: Date | null; updateDate?: Date | null; coupons?: Coupon[] | null; metaRecords?: OrderMeta[] | null; } //# sourceMappingURL=order.entity.d.ts.map