conekta/conekta-node

View on GitHub
model/order-fiscal-entity-response.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* tslint:disable */
/* eslint-disable */
/**
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.0
 * Contact: engineering@conekta.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


// May contain unused imports in some cases
// @ts-ignore
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;
}