import { CustomerGroup } from "../../types/customer-group"; import { Gender } from "../../types/gender"; import { ProductImportedEventModel } from "./product-imported-event-model"; export interface OrderImportedEventModel { shopName: string; shopOrderId: number; orderId: string; customerId: string; group: CustomerGroup; orderDate: Date; paymentMethod: string; shippingMethod: string; email: string; phone: string; vatId: string; address: { company: string; gender: Gender; firstname: string; lastname: string; street: string; street2: string; postcode: string; city: string; country: string; countryISOCode2: string; }; billingAddess: { company: string; gender: Gender; firstname: string; lastname: string; street: string; street2: string; postcode: string; city: string; country: string; countryISOCode2: string; }; shippingAddress: { company: string; gender: Gender; firstname: string; lastname: string; street: string; street2: string; postcode: string; city: string; country: string; countryISOCode2: string; }; products: ProductImportedEventModel[]; subtotal: number; discountText: string; discount: number; shippingText: string; shipping: number; taxText: string; tax: number; total: number; comment: string; status: number; }