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

157 lines (152 loc) 4.09 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 BalanceForQuery */ export interface BalanceForQuery { /** * The identifier for the balance type. * @type {number} * @memberof BalanceForQuery */ 'acctResId'?: number; /** * The unique code representing the balance type. * @type {string} * @memberof BalanceForQuery */ 'acctResCode'?: string; /** * The name of the balance type. * @type {string} * @memberof BalanceForQuery */ 'acctResName'?: string; /** * A string. defines the type of the underlying Balance. Possible values are: / DATA/ VOICE/ SMS/ EUR/ USD * @type {string} * @memberof BalanceForQuery */ 'usageType'?: string; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceForQuery */ 'unitCode'?: string; /** * The formatted display of the gross balance. * @type {string} * @memberof BalanceForQuery */ 'grossBalance': string; /** * The gross balance as an integer. * @type {number} * @memberof BalanceForQuery */ 'grossBalanceInt': number; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceForQuery */ 'grossBalanceUnitCode'?: string; /** * The unit name for the gross balance. * @type {string} * @memberof BalanceForQuery */ 'grossBalanceUnitName'?: string; /** * The formatted display of the real-time balance. * @type {string} * @memberof BalanceForQuery */ 'realBalance': string; /** * The real-time balance as an integer. * @type {number} * @memberof BalanceForQuery */ 'realBalanceInt': number; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceForQuery */ 'realBalanceUnitCode': string; /** * The unit name for the real-time balance. * @type {string} * @memberof BalanceForQuery */ 'realBalanceUnitName'?: string; /** * The formatted display of the consumed balance. * @type {string} * @memberof BalanceForQuery */ 'consumeBalance': string; /** * The consumed balance as an integer. * @type {number} * @memberof BalanceForQuery */ 'consumeBalanceInt': number; /** * The unit code for the balance. Possible values are: / Second/ Minute/ Hour/ Byte/ KB/ MB/ GB/ SMS * @type {string} * @memberof BalanceForQuery */ 'consumeBalanceUnitCode': string; /** * The unit name for the consumed balance. * @type {string} * @memberof BalanceForQuery */ 'consumeBalanceUnitName'?: string; /** * The effective date.Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS * @type {string} * @memberof BalanceForQuery */ 'effDate': string; /** * The expiration date. Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS * @type {string} * @memberof BalanceForQuery */ 'expDate'?: string; /** * The symbol of the currency. * @type {string} * @memberof BalanceForQuery */ 'currencySymbol': string; /** * The unique identifier for the offer instance. * @type {number} * @memberof BalanceForQuery */ 'offerInstId'?: number; /** * Indicates whether the balance is unlimited. Default: false * @type {boolean} * @memberof BalanceForQuery */ 'unlimited'?: boolean; }