UNPKG

digitalfemsa

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