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

115 lines (110 loc) 3.1 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 BalanceSummaryForQuery */ export interface BalanceSummaryForQuery { /** * A string. defines the type of the underlying Balance. Possible values are: / DATA/ VOICE/ SMS/ EUR/ USD * @type {string} * @memberof BalanceSummaryForQuery */ 'usageType': string; /** * The formatted display of the gross balance. * @type {string} * @memberof BalanceSummaryForQuery */ 'grossBalance': string; /** * The gross balance as an integer. * @type {number} * @memberof BalanceSummaryForQuery */ 'grossBalanceInt': number; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceSummaryForQuery */ 'grossBalanceUnitCode'?: string; /** * The unit name for the gross balance. * @type {string} * @memberof BalanceSummaryForQuery */ 'grossBalanceUnitName'?: string; /** * The formatted display of the real-time balance. * @type {string} * @memberof BalanceSummaryForQuery */ 'realBalance': string; /** * The real-time balance as an integer. * @type {number} * @memberof BalanceSummaryForQuery */ 'realBalanceInt': number; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceSummaryForQuery */ 'realBalanceUnitCode'?: string; /** * The unit name for the real-time balance. * @type {string} * @memberof BalanceSummaryForQuery */ 'realBalanceUnitName'?: string; /** * The formatted display of the consumed balance. * @type {string} * @memberof BalanceSummaryForQuery */ 'consumeBalance': string; /** * The consumed balance as an integer. * @type {number} * @memberof BalanceSummaryForQuery */ 'consumeBalanceInt': number; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceSummaryForQuery */ 'consumeBalanceUnitCode'?: string; /** * The unit name for the consumed balance. * @type {string} * @memberof BalanceSummaryForQuery */ 'consumeBalanceUnitName'?: string; /** * The symbol of the currency. * @type {string} * @memberof BalanceSummaryForQuery */ 'currencySymbol'?: string; /** * Indicates whether the balance is unlimited. Default: false * @type {boolean} * @memberof BalanceSummaryForQuery */ 'unlimited'?: boolean; }