/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { AddressFieldScoreClass } from './address-field-score-class'; import { StructuredAddressClass } from './structured-address-class'; /** * * @export * @interface ValidateAddressResponseClass */ export interface ValidateAddressResponseClass { /** * The error object for address validation! * @type {object} * @memberof ValidateAddressResponseClass */ 'errors': object; /** * Indicates whether the address is valid or not! * @type {boolean} * @memberof ValidateAddressResponseClass */ 'isAddressValid': boolean; /** * The input address in a single line * @type {string} * @memberof ValidateAddressResponseClass */ 'rawAddress': string; /** * Individual score for various parts of the address * @type {AddressFieldScoreClass} * @memberof ValidateAddressResponseClass */ 'score': AddressFieldScoreClass; /** * The structured address object! * @type {StructuredAddressClass} * @memberof ValidateAddressResponseClass */ 'structuredAddress': StructuredAddressClass; }