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.66 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 AcctItemForBillDetail */ export interface AcctItemForBillDetail { /** * Identifier of the account item. * @type {number} * @memberof AcctItemForBillDetail */ 'acctItemId'?: number; /** * Identifier of the account item type. * @type {number} * @memberof AcctItemForBillDetail */ 'acctItemTypeId'?: number; /** * The name of the account item type. * @type {string} * @memberof AcctItemForBillDetail */ 'acctItemTypeName'?: string; /** * The unique number associated with the account. * @type {string} * @memberof AcctItemForBillDetail */ 'acctNbr'?: string; /** * The unique identifier for the subscriber. * @type {number} * @memberof AcctItemForBillDetail */ 'subsId'?: number; /** * The prefix associated with the subscriber\'s service number. * @type {string} * @memberof AcctItemForBillDetail */ 'prefix'?: string; /** * The service number associated with the subscriber. * @type {string} * @memberof AcctItemForBillDetail */ 'serviceNumber'?: string; /** * The formatted amount. * @type {string} * @memberof AcctItemForBillDetail */ 'amount'?: string; /** * The amount as an integer. * @type {number} * @memberof AcctItemForBillDetail */ 'amountInt'?: number; /** * The formatted amount that has been settled. * @type {string} * @memberof AcctItemForBillDetail */ 'settledAmount'?: string; /** * The amount that has been settled as an integer. * @type {number} * @memberof AcctItemForBillDetail */ 'settledAmountInt'?: number; /** * The identifier representing the billing cycle. * @type {number} * @memberof AcctItemForBillDetail */ 'billingCycleId'?: number; /** * The start date of the billing cycle. Format:YYYY-MM-DD * @type {string} * @memberof AcctItemForBillDetail */ 'cycleBeginDate'?: string; /** * The end date of the billing cycle. Format:YYYY-MM-DD * @type {string} * @memberof AcctItemForBillDetail */ 'cycleEndDate'?: string; }