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

85 lines (80 loc) 2.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 OweInfoForQuery */ export interface OweInfoForQuery { /** * The formatted opening amount of unpaid bill. * @type {string} * @memberof OweInfoForQuery */ 'openingAmount': string; /** * The opening amount of unpaid as an integer. * @type {number} * @memberof OweInfoForQuery */ 'openingAmountInt': number; /** * The due date for the most recent unpaid bill. Use ISO 8601 standard, YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS. * @type {string} * @memberof OweInfoForQuery */ 'dueDate'?: string; /** * The identifier representing the billing cycle. * @type {number} * @memberof OweInfoForQuery */ 'billingCycleId'?: number; /** * The start date of the billing cycle. Format:YYYY-MM-DD * @type {string} * @memberof OweInfoForQuery */ 'cycleBeginDate'?: string; /** * The end date of the billing cycle. Format:YYYY-MM-DD * @type {string} * @memberof OweInfoForQuery */ 'cycleEndDate'?: string; /** * The formatted amount of prepaid balance. * @type {string} * @memberof OweInfoForQuery */ 'advancedAmount'?: string; /** * The amount of prepaid balance as an integer. * @type {number} * @memberof OweInfoForQuery */ 'advancedAmountInt'?: number; /** * The formatted amount of unbilled balance. * @type {string} * @memberof OweInfoForQuery */ 'unbilledAmount'?: string; /** * The amount of unbilled balance as an integer. * @type {number} * @memberof OweInfoForQuery */ 'unbilledAmountInt'?: number; }