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
76 lines (68 loc) • 1.72 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 PriceForQuery
*/
export interface PriceForQuery {
/**
* The duty-free amount.
* @type {string}
* @memberof PriceForQuery
*/
'dutyFreeAmount'?: string;
/**
* The duty-free amount as an integer.
* @type {number}
* @memberof PriceForQuery
*/
'dutyFreeAmountInt'?: number;
/**
* The tax amount.
* @type {string}
* @memberof PriceForQuery
*/
'tax'?: string;
/**
* The tax amount as an integer.
* @type {number}
* @memberof PriceForQuery
*/
'taxInt'?: number;
/**
* The amount including tax.
* @type {string}
* @memberof PriceForQuery
*/
'taxIncludedAmount'?: string;
/**
* The amount including tax as an integer.
* @type {number}
* @memberof PriceForQuery
*/
'taxIncludedAmountInt'?: number;
/**
* The type of pricing associated with the fee. Possible values are: / otc; / mrc; / deposit
* @type {string}
* @memberof PriceForQuery
*/
'priceType'?: PriceForQueryPriceTypeEnum;
}
export const PriceForQueryPriceTypeEnum = {
Otc: 'otc',
Mrc: 'mrc',
Deposit: 'deposit'
} as const;
export type PriceForQueryPriceTypeEnum = typeof PriceForQueryPriceTypeEnum[keyof typeof PriceForQueryPriceTypeEnum];