UNPKG

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

109 lines (104 loc) 2.76 kB
/* 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 RentFeeDetailForOrderFeeResp */ export interface RentFeeDetailForOrderFeeResp { /** * The unique identifier for the order item. * @type {number} * @memberof RentFeeDetailForOrderFeeResp */ 'orderItemId'?: number; /** * The service number associated with the subscriber. * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'serviceNumber'?: string; /** * Identifier of the account item type. * @type {number} * @memberof RentFeeDetailForOrderFeeResp */ 'acctItemTypeId'?: number; /** * The name of the account item type. * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'acctItemTypeName'?: string; /** * The unique identifier for the offer instance. * @type {number} * @memberof RentFeeDetailForOrderFeeResp */ 'offerInstId'?: number; /** * A unique identifier for an offer. * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'offerNbr'?: string; /** * The name of the offer . * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'offerName'?: string; /** * The duty-free amount. * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'dutyFreeAmount'?: string; /** * The duty-free amount as an integer. * @type {number} * @memberof RentFeeDetailForOrderFeeResp */ 'dutyFreeAmountInt': number; /** * The tax amount. * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'tax'?: string; /** * The tax amount as an integer. * @type {number} * @memberof RentFeeDetailForOrderFeeResp */ 'taxInt': number; /** * The amount including tax. * @type {string} * @memberof RentFeeDetailForOrderFeeResp */ 'taxIncludedAmount'?: string; /** * The amount including tax as an integer. * @type {number} * @memberof RentFeeDetailForOrderFeeResp */ 'taxIncludedAmountInt': 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 RentFeeDetailForOrderFeeResp */ 'paymentMethodType'?: string; }