import type { Address } from '../../../libs/util-domain-models'; export interface CustomerAddress extends Address { isPreferred?: boolean; } export interface CustomerContactInformation { email: string; fax?: string; phoneBusiness?: string; phoneHome?: string; phoneMobile?: string; } export interface CustomerDetails { company?: string; firstName: string; fullName?: string; jobTitle?: string; honorific?: string; lastName: string; secondName?: string; suffix?: string; } export interface Customer extends CustomerContactInformation, CustomerDetails { customerNumber?: string; }