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
121 lines (116 loc) • 3.08 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 OrderFeeDetailForOrderFeeResp
*/
export interface OrderFeeDetailForOrderFeeResp {
/**
* Identifier of the account item type.
* @type {number}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'acctItemTypeId'?: number;
/**
* The code of the account item type.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'acctItemTypeCode'?: string;
/**
* The name of the account item type.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'acctItemTypeName'?: string;
/**
* The service number associated with the subscriber.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'serviceNumber'?: string;
/**
* The duty-free amount.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'dutyFreeAmount': string;
/**
* The duty-free amount as an integer.
* @type {number}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'dutyFreeAmountInt': number;
/**
* The tax amount.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'tax'?: string;
/**
* The tax amount as an integer.
* @type {number}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'taxInt'?: number;
/**
* The amount including tax.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'taxIncludedAmount': string;
/**
* The amount including tax as an integer.
* @type {number}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'taxIncludedAmountInt': number;
/**
* The receivable amount.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'receivableAmount'?: string;
/**
* The receivable amount as an integer.
* @type {number}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'receivableAmountInt': number;
/**
* A unique identifier for an offer.
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'offerNbr'?: string;
/**
* The name of the offer .
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'offerName'?: string;
/**
* The unique identifier for the order item.
* @type {number}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'orderItemId'?: number;
/**
* The type of payment method used for the payment. Possible values are: /B-Balance; / O-Online Payment; / P-Points; / D-Pay on delivery
* @type {string}
* @memberof OrderFeeDetailForOrderFeeResp
*/
'paymentMethodType'?: string;
}