whalecloud-dxp-api-react-native
Version:
This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr
79 lines (74 loc) • 1.79 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* DXP API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface InstallmentForQuery
*/
export interface InstallmentForQuery {
/**
* The duty-free amount.
* @type {string}
* @memberof InstallmentForQuery
*/
'dutyFreeAmount'?: string;
/**
* The duty-free amount as an integer.
* @type {number}
* @memberof InstallmentForQuery
*/
'dutyFreeAmountInt'?: number;
/**
* The tax amount.
* @type {string}
* @memberof InstallmentForQuery
*/
'tax'?: string;
/**
* The tax amount as an integer.
* @type {number}
* @memberof InstallmentForQuery
*/
'taxInt'?: number;
/**
* The amount including tax.
* @type {string}
* @memberof InstallmentForQuery
*/
'taxIncludedAmount'?: string;
/**
* The amount including tax as an integer.
* @type {number}
* @memberof InstallmentForQuery
*/
'taxIncludedAmountInt'?: number;
/**
* Date of the installment. Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS
* @type {string}
* @memberof InstallmentForQuery
*/
'installmentDate'?: string;
/**
* Indicator whether the installment is rated or not.
* @type {boolean}
* @memberof InstallmentForQuery
*/
'rated'?: boolean;
/**
* The sequence number.
* @type {number}
* @memberof InstallmentForQuery
*/
'seq'?: number;
}