digitalfemsa
Version:
OpenAPI client for digitalfemsa
76 lines (75 loc) • 1.92 kB
TypeScript
/**
* 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 { OrderFiscalEntityAddressResponse } from './order-fiscal-entity-address-response';
/**
* Fiscal entity of the order, Currently it is a purely informative field
* @export
* @interface OrderFiscalEntityResponse
*/
export interface OrderFiscalEntityResponse {
/**
*
* @type {OrderFiscalEntityAddressResponse}
* @memberof OrderFiscalEntityResponse
*/
'address': OrderFiscalEntityAddressResponse;
/**
* Email of the fiscal entity
* @type {string}
* @memberof OrderFiscalEntityResponse
*/
'email'?: string | null;
/**
* Metadata associated with the fiscal entity
* @type {{ [key: string]: any; }}
* @memberof OrderFiscalEntityResponse
*/
'metadata'?: {
[key: string]: any;
};
/**
* Name of the fiscal entity
* @type {string}
* @memberof OrderFiscalEntityResponse
*/
'name'?: string | null;
/**
* Tax ID of the fiscal entity
* @type {string}
* @memberof OrderFiscalEntityResponse
*/
'tax_id'?: string | null;
/**
* ID of the fiscal entity
* @type {string}
* @memberof OrderFiscalEntityResponse
*/
'id': string;
/**
* The time at which the object was created in seconds since the Unix epoch
* @type {number}
* @memberof OrderFiscalEntityResponse
*/
'created_at': number;
/**
*
* @type {string}
* @memberof OrderFiscalEntityResponse
*/
'object': string;
/**
* Phone of the fiscal entity
* @type {string}
* @memberof OrderFiscalEntityResponse
*/
'phone'?: string | null;
}