UNPKG

digitalfemsa

Version:
58 lines (57 loc) 1.22 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. */ import { CustomerAddress } from './customer-address'; /** * * @export * @interface CustomerFiscalEntitiesRequest */ export interface CustomerFiscalEntitiesRequest { /** * * @type {CustomerAddress} * @memberof CustomerFiscalEntitiesRequest */ 'address': CustomerAddress; /** * * @type {string} * @memberof CustomerFiscalEntitiesRequest */ 'tax_id'?: string; /** * * @type {string} * @memberof CustomerFiscalEntitiesRequest */ 'email'?: string; /** * * @type {string} * @memberof CustomerFiscalEntitiesRequest */ 'phone'?: string; /** * * @type {{ [key: string]: object; }} * @memberof CustomerFiscalEntitiesRequest */ 'metadata'?: { [key: string]: object; }; /** * * @type {string} * @memberof CustomerFiscalEntitiesRequest */ 'company_name'?: string; }