/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Telecom } from "./Telecom"; export declare class Address { constructor(json: JSON | any); addressType?: Address.AddressTypeEnum; street?: string; houseNumber?: string; postboxNumber?: string; postalCode?: string; city?: string; country?: string; telecoms?: Array; } export declare namespace Address { type AddressTypeEnum = "home" | "work" | "vacation" | "hospital" | "clinic" | "hq" | "other" | "diplomatic" | "reference" | "postal" | "temporary"; const AddressTypeEnum: { Home: AddressTypeEnum; Work: AddressTypeEnum; Vacation: AddressTypeEnum; Hospital: AddressTypeEnum; Clinic: AddressTypeEnum; Hq: AddressTypeEnum; Other: AddressTypeEnum; Diplomatic: AddressTypeEnum; Reference: AddressTypeEnum; Postal: AddressTypeEnum; Temporary: AddressTypeEnum; }; }