conekta/conekta-node

View on GitHub
model/fiscal-entity-address.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* tslint:disable */
/* eslint-disable */
/**
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.0
 * Contact: engineering@conekta.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */



/**
 * Address of the fiscal entity
 * @export
 * @interface FiscalEntityAddress
 */
export interface FiscalEntityAddress {
    /**
     * Street name and number
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'street1': string;
    /**
     * Street name and number
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'street2'?: string | null;
    /**
     * Postal code
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'postal_code': string;
    /**
     * City
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'city': string;
    /**
     * State
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'state'?: string;
    /**
     * this field follows the [ISO 3166-1 alpha-2 standard](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'country': string;
    /**
     * External number
     * @type {string}
     * @memberof FiscalEntityAddress
     */
    'external_number': string;
}