export interface PickUp { name: string; key: number; } export interface SelectedPostOffice { name: string; postalCode: string; city: string; country: string; } export interface ShippingDetails { repairPrice?: number; shippingPrice?: number; clientCode?: string; atsCode?: string; currencyCode?: string; currencySymbol?: string; ecoSupport?: number; pickUp: PickUp; pickUpChoice: string; carrierCode: string; fromName?: string; fromAddress1?: string; fromZip?: string; fromCity?: string; fromCountryCode?: string; fromPhone?: string; toName?: string; toAddress1?: string; toZip?: string; toCity?: string; toCountryCode?: string; toPhone?: string; selectedPostOffice: SelectedPostOffice; }