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

70 lines (62 loc) 1.77 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 BillingCycleForQuery */ export interface BillingCycleForQuery { /** * The identifier representing the billing cycle. * @type {number} * @memberof BillingCycleForQuery */ 'billingCycleId': number; /** * The identifier for the billing cycle type. * @type {number} * @memberof BillingCycleForQuery */ 'billingCycleTypeId': number; /** * The start date. Use ISO 8601 standard, YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS * @type {string} * @memberof BillingCycleForQuery */ 'beginDate'?: string; /** * The end date. Use ISO 8601 standard, YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS. * @type {string} * @memberof BillingCycleForQuery */ 'endDate'?: string; /** * The date when the debt is recorded. Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS * @type {string} * @memberof BillingCycleForQuery */ 'debtDate'?: string; /** * The state of the invoice. A: Uninvoiced B: Invoicing C: Invoiced * @type {string} * @memberof BillingCycleForQuery */ 'state'?: BillingCycleForQueryStateEnum; } export const BillingCycleForQueryStateEnum = { A: 'A', B: 'B', C: 'C' } as const; export type BillingCycleForQueryStateEnum = typeof BillingCycleForQueryStateEnum[keyof typeof BillingCycleForQueryStateEnum];