import { CustomerGroup } from "../../types/customer-group"; import { Gender } from "../../types/gender"; export interface CustomerImportedEventModel { shopName: string; shopCustomerId: number; customerId: string; customerGroup: CustomerGroup; discount: number; company: string; vatId: string; gender: Gender; firstname: string; lastname: string; street: string; street2: string; postcode: string; city: string; country: string; countryISOCode2: string; email: string; phone: string; }