conekta/conekta-node

View on GitHub
model/company-fiscal-info-address-response.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.
 */



/**
 * Company fiscal info address model
 * @export
 * @interface CompanyFiscalInfoAddressResponse
 */
export interface CompanyFiscalInfoAddressResponse {
    /**
     * The resource\'s type
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'object'?: CompanyFiscalInfoAddressResponseObjectEnum;
    /**
     * Street Address
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'street1'?: string;
    /**
     * Colonia
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'street2'?: string;
    /**
     * City
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'city'?: string;
    /**
     * State
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'state'?: string;
    /**
     * Country
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'country'?: string;
    /**
     * Postal code
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'postal_code'?: string;
    /**
     * Street number
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'external_number'?: string;
    /**
     * Unit / apartment number
     * @type {string}
     * @memberof CompanyFiscalInfoAddressResponse
     */
    'internal_number'?: string;
}

export const CompanyFiscalInfoAddressResponseObjectEnum = {
    address: 'address'
} as const;

export type CompanyFiscalInfoAddressResponseObjectEnum = typeof CompanyFiscalInfoAddressResponseObjectEnum[keyof typeof CompanyFiscalInfoAddressResponseObjectEnum];