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
133 lines (128 loc) • 3.58 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { DepositForQuery } from './deposit-for-query';
// May contain unused imports in some cases
// @ts-ignore
import type { OrderFeeDetailForOrderFeeResp } from './order-fee-detail-for-order-fee-resp';
// May contain unused imports in some cases
// @ts-ignore
import type { PaymentForCalcFeeResp } from './payment-for-calc-fee-resp';
// May contain unused imports in some cases
// @ts-ignore
import type { RentFeeDetailForOrderFeeResp } from './rent-fee-detail-for-order-fee-resp';
/**
*
* @export
* @interface OrderFeeInfoForQuery
*/
export interface OrderFeeInfoForQuery {
/**
* The total order fee.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'totalOrderFee': string;
/**
* The total order fee as an integer.
* @type {number}
* @memberof OrderFeeInfoForQuery
*/
'totalOrderFeeInt': number;
/**
* The total tax amount.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'totalTax'?: string;
/**
* The total tax amount as an integer.
* @type {number}
* @memberof OrderFeeInfoForQuery
*/
'totalTaxInt'?: number;
/**
* The total rent fee.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'totalRentFee'?: string;
/**
* The total rent fee as an integer.
* @type {number}
* @memberof OrderFeeInfoForQuery
*/
'totalRentFeeInt'?: number;
/**
* The total payable fee.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'totalPayableFee': string;
/**
* The total payable fee as an integer.
* @type {number}
* @memberof OrderFeeInfoForQuery
*/
'totalPayableFeeInt': number;
/**
* The total payable tax amount as an integer.
* @type {number}
* @memberof OrderFeeInfoForQuery
*/
'totalPayableTaxInt'?: number;
/**
* The total payable tax amount.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'totalPayableTax'?: string;
/**
* The symbol of the currency.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'currencySymbol': string;
/**
* The code of the currency.
* @type {string}
* @memberof OrderFeeInfoForQuery
*/
'currencyCode': string;
/**
* List of detailed fees associated with the order.
* @type {Array<OrderFeeDetailForOrderFeeResp>}
* @memberof OrderFeeInfoForQuery
*/
'orderFeeDetailList': Array<OrderFeeDetailForOrderFeeResp>;
/**
* List of detailed rental fees associated with the order.
* @type {Array<RentFeeDetailForOrderFeeResp>}
* @memberof OrderFeeInfoForQuery
*/
'rentFeeDetailList'?: Array<RentFeeDetailForOrderFeeResp>;
/**
*
* @type {Array<DepositForQuery>}
* @memberof OrderFeeInfoForQuery
*/
'depositDetailList'?: Array<DepositForQuery>;
/**
* List of payment methods available for the transaction.
* @type {Array<PaymentForCalcFeeResp>}
* @memberof OrderFeeInfoForQuery
*/
'paymentMethodList'?: Array<PaymentForCalcFeeResp>;
}