export interface IAddress {
    city: string;
    company: string;
    countryId: string;
    email: string;
    firstname: string;
    lastname: string;
    postcode: string;
    street: string;
    telephone: string;
}