UNPKG

digitalfemsa

Version:
77 lines (76 loc) 1.94 kB
/** * 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. */ /** * 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 declare const CompanyFiscalInfoAddressResponseObjectEnum: { readonly address: "address"; }; export type CompanyFiscalInfoAddressResponseObjectEnum = typeof CompanyFiscalInfoAddressResponseObjectEnum[keyof typeof CompanyFiscalInfoAddressResponseObjectEnum];