UNPKG

digitalfemsa

Version:
67 lines (62 loc) 1.39 kB
/* tslint:disable */ /* eslint-disable */ /** * Femsa API * Femsa sdk * * The version of the OpenAPI document: 2.1.0 * Contact: engineering@femsa.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; }