/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { GeoJsonDto } from './geo-json-dto'; /** * * @export * @interface AddressDto */ export interface AddressDto { /** * * @type {string} * @memberof AddressDto */ street: string; /** * * @type {string} * @memberof AddressDto */ streetNumber: string; /** * * @type {string} * @memberof AddressDto */ name?: string; /** * * @type {string} * @memberof AddressDto */ addition?: string; /** * * @type {string} * @memberof AddressDto */ country: string; /** * * @type {string} * @memberof AddressDto */ state?: string; /** * * @type {string} * @memberof AddressDto */ county?: string; /** * * @type {string} * @memberof AddressDto */ zip: string; /** * * @type {string} * @memberof AddressDto */ city: string; /** * * @type {GeoJsonDto} * @memberof AddressDto */ geoJson?: GeoJsonDto; }