import { CountryEnum } from '../enums/country.enum'; /** * Defines the data structure for a client. * This object is used to transfer client data between different parts of the application. */ export declare class ClientDataDto { /** * Email of the user */ email: string; /** * First name of the user */ firstName: string; /** * Last name of the user */ lastName: string; /** * Telephone number of the user */ telephone: string; /** * Mobile number of the user */ mobile?: string; /** * Address line 1 of the user */ address1: string; /** * Address line 2 of the user */ address2?: string; /** * Address line 3 of the user */ address3?: string; /** * Postal code of the user */ postcode: string; /** * City of the user */ city: string; /** * Country code of the user */ country: CountryEnum; /** * State of the user */ state?: string; /** * VAT number of the user * @optional */ vat?: string; /** * Tax office of the user * @optional */ taxOffice?: string; }