/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface StructuredAddressClass */ export interface StructuredAddressClass { /** * City of the address. * @type {string} * @memberof StructuredAddressClass */ 'city': string; /** * List of broken down address components. * @type {Array} * @memberof StructuredAddressClass */ 'components': Array; /** * Country of the address. * @type {string} * @memberof StructuredAddressClass */ 'country': string; /** * House number of the address. * @type {string} * @memberof StructuredAddressClass */ 'houseNumber': string; /** * Postal code of the address. * @type {string} * @memberof StructuredAddressClass */ 'postalCode': string; /** * Street of the address. * @type {string} * @memberof StructuredAddressClass */ 'street': string; }