/**
 * CardScan API
 * The official documentation for the CardScan API Clients.
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { AddressType } from './address-type';
import { KeysToCamelCase, KeysToSnakeCase } from "./";
/**
 *
 * @export
 * @interface EnrichedAddressResultInner
 */
export interface EnrichedAddressResultInnerOriginal {
    /**
     * The label or description of the address (e.g., \"Send Claims to\", \"Mail Appeals to\")
     * @type {string}
     * @memberof EnrichedAddressResultInner
     */
    'label': string;
    /**
     *
     * @type {AddressType}
     * @memberof EnrichedAddressResultInner
     */
    'type': AddressType;
    /**
     * The company or organization name associated with the address
     * @type {string}
     * @memberof EnrichedAddressResultInner
     */
    'company_name'?: string;
    /**
     * The actual mailing address
     * @type {string}
     * @memberof EnrichedAddressResultInner
     */
    'address': string;
    /**
     * Confidence score for the extraction (0-1 as string)
     * @type {string}
     * @memberof EnrichedAddressResultInner
     */
    'score': string;
}
export type EnrichedAddressResultInner = KeysToCamelCase<EnrichedAddressResultInnerOriginal>;
export type EnrichedAddressResultInnerSnake = KeysToSnakeCase<EnrichedAddressResultInnerOriginal>;
