@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231122.1 → 1.20231206.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,194 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { VBAGroupDisenrollAffectedClaimsListVBAResponse } from '../models';
25
+ /**
26
+ * GroupDisenrollAffectedClaimsApi - axios parameter creator
27
+ * @export
28
+ */
29
+ export const GroupDisenrollAffectedClaimsApiAxiosParamCreator = function (configuration?: Configuration) {
30
+ return {
31
+ /**
32
+ * List Affected Claims for Disrolling Group ID
33
+ * @summary Get Affected Claims for Disrolling Group ID
34
+ * @param {string} vbasoftwareDatabase Target database
35
+ * @param {string} groupID Group ID
36
+ * @param {string} disenrollDate Disenroll Date
37
+ * @param {number} [page] Page
38
+ * @param {number} [pageSize] Page Size
39
+ * @param {*} [options] Override http request option.
40
+ * @throws {RequiredError}
41
+ */
42
+ listGroupDisenrollAffectedClaims: async (vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
43
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
44
+ assertParamExists('listGroupDisenrollAffectedClaims', 'vbasoftwareDatabase', vbasoftwareDatabase)
45
+ // verify required parameter 'groupID' is not null or undefined
46
+ assertParamExists('listGroupDisenrollAffectedClaims', 'groupID', groupID)
47
+ // verify required parameter 'disenrollDate' is not null or undefined
48
+ assertParamExists('listGroupDisenrollAffectedClaims', 'disenrollDate', disenrollDate)
49
+ const localVarPath = `/groups/{groupID}/disenroll-affected-claims`
50
+ .replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
51
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
52
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
53
+ let baseOptions;
54
+ if (configuration) {
55
+ baseOptions = configuration.baseOptions;
56
+ }
57
+
58
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
59
+ const localVarHeaderParameter = {} as any;
60
+ const localVarQueryParameter = {} as any;
61
+
62
+ // authentication apiKeyAuth required
63
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
64
+
65
+ // authentication bearerAuth required
66
+ // http bearer authentication required
67
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
68
+
69
+ if (disenrollDate !== undefined) {
70
+ localVarQueryParameter['disenrollDate'] = (disenrollDate as any instanceof Date) ?
71
+ (disenrollDate as any).toISOString() :
72
+ disenrollDate;
73
+ }
74
+
75
+ if (page !== undefined) {
76
+ localVarQueryParameter['page'] = page;
77
+ }
78
+
79
+ if (pageSize !== undefined) {
80
+ localVarQueryParameter['pageSize'] = pageSize;
81
+ }
82
+
83
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
84
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
85
+ }
86
+
87
+
88
+
89
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
90
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
91
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
92
+
93
+ return {
94
+ url: toPathString(localVarUrlObj),
95
+ options: localVarRequestOptions,
96
+ };
97
+ },
98
+ }
99
+ };
100
+
101
+ /**
102
+ * GroupDisenrollAffectedClaimsApi - functional programming interface
103
+ * @export
104
+ */
105
+ export const GroupDisenrollAffectedClaimsApiFp = function(configuration?: Configuration) {
106
+ const localVarAxiosParamCreator = GroupDisenrollAffectedClaimsApiAxiosParamCreator(configuration)
107
+ return {
108
+ /**
109
+ * List Affected Claims for Disrolling Group ID
110
+ * @summary Get Affected Claims for Disrolling Group ID
111
+ * @param {string} vbasoftwareDatabase Target database
112
+ * @param {string} groupID Group ID
113
+ * @param {string} disenrollDate Disenroll Date
114
+ * @param {number} [page] Page
115
+ * @param {number} [pageSize] Page Size
116
+ * @param {*} [options] Override http request option.
117
+ * @throws {RequiredError}
118
+ */
119
+ async listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAGroupDisenrollAffectedClaimsListVBAResponse>> {
120
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listGroupDisenrollAffectedClaims(vbasoftwareDatabase, groupID, disenrollDate, page, pageSize, options);
121
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
122
+ },
123
+ }
124
+ };
125
+
126
+ /**
127
+ * GroupDisenrollAffectedClaimsApi - factory interface
128
+ * @export
129
+ */
130
+ export const GroupDisenrollAffectedClaimsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
131
+ const localVarFp = GroupDisenrollAffectedClaimsApiFp(configuration)
132
+ return {
133
+ /**
134
+ * List Affected Claims for Disrolling Group ID
135
+ * @summary Get Affected Claims for Disrolling Group ID
136
+ * @param {string} vbasoftwareDatabase Target database
137
+ * @param {string} groupID Group ID
138
+ * @param {string} disenrollDate Disenroll Date
139
+ * @param {number} [page] Page
140
+ * @param {number} [pageSize] Page Size
141
+ * @param {*} [options] Override http request option.
142
+ * @throws {RequiredError}
143
+ */
144
+ listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: any): AxiosPromise<VBAGroupDisenrollAffectedClaimsListVBAResponse> {
145
+ return localVarFp.listGroupDisenrollAffectedClaims(vbasoftwareDatabase, groupID, disenrollDate, page, pageSize, options).then((request) => request(axios, basePath));
146
+ },
147
+ };
148
+ };
149
+
150
+ /**
151
+ * GroupDisenrollAffectedClaimsApi - interface
152
+ * @export
153
+ * @interface GroupDisenrollAffectedClaimsApi
154
+ */
155
+ export interface GroupDisenrollAffectedClaimsApiInterface {
156
+ /**
157
+ * List Affected Claims for Disrolling Group ID
158
+ * @summary Get Affected Claims for Disrolling Group ID
159
+ * @param {string} vbasoftwareDatabase Target database
160
+ * @param {string} groupID Group ID
161
+ * @param {string} disenrollDate Disenroll Date
162
+ * @param {number} [page] Page
163
+ * @param {number} [pageSize] Page Size
164
+ * @param {*} [options] Override http request option.
165
+ * @throws {RequiredError}
166
+ * @memberof GroupDisenrollAffectedClaimsApiInterface
167
+ */
168
+ listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<VBAGroupDisenrollAffectedClaimsListVBAResponse>;
169
+
170
+ }
171
+
172
+ /**
173
+ * GroupDisenrollAffectedClaimsApi - object-oriented interface
174
+ * @export
175
+ * @class GroupDisenrollAffectedClaimsApi
176
+ * @extends {BaseAPI}
177
+ */
178
+ export class GroupDisenrollAffectedClaimsApi extends BaseAPI implements GroupDisenrollAffectedClaimsApiInterface {
179
+ /**
180
+ * List Affected Claims for Disrolling Group ID
181
+ * @summary Get Affected Claims for Disrolling Group ID
182
+ * @param {string} vbasoftwareDatabase Target database
183
+ * @param {string} groupID Group ID
184
+ * @param {string} disenrollDate Disenroll Date
185
+ * @param {number} [page] Page
186
+ * @param {number} [pageSize] Page Size
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ * @memberof GroupDisenrollAffectedClaimsApi
190
+ */
191
+ public listGroupDisenrollAffectedClaims(vbasoftwareDatabase: string, groupID: string, disenrollDate: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
192
+ return GroupDisenrollAffectedClaimsApiFp(this.configuration).listGroupDisenrollAffectedClaims(vbasoftwareDatabase, groupID, disenrollDate, page, pageSize, options).then((request) => request(this.axios, this.basePath));
193
+ }
194
+ }
@@ -0,0 +1,166 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { PremInvoiceIndividualListVBAResponse } from '../models';
25
+ /**
26
+ * PremInvoiceListApi - axios parameter creator
27
+ * @export
28
+ */
29
+ export const PremInvoiceListApiAxiosParamCreator = function (configuration?: Configuration) {
30
+ return {
31
+ /**
32
+ * Retrieves a list of Premium Invoices for individual subscribers.
33
+ * @summary Retrieve Premium Invoices for Individual Subscribers
34
+ * @param {string} vbasoftwareDatabase Target database
35
+ * @param {string} [invoiceDate] The date that the invoice was generated.
36
+ * @param {*} [options] Override http request option.
37
+ * @throws {RequiredError}
38
+ */
39
+ listPremInvoicesIndividual: async (vbasoftwareDatabase: string, invoiceDate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
40
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
41
+ assertParamExists('listPremInvoicesIndividual', 'vbasoftwareDatabase', vbasoftwareDatabase)
42
+ const localVarPath = `/premium-invoices/individual`;
43
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
44
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
45
+ let baseOptions;
46
+ if (configuration) {
47
+ baseOptions = configuration.baseOptions;
48
+ }
49
+
50
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
51
+ const localVarHeaderParameter = {} as any;
52
+ const localVarQueryParameter = {} as any;
53
+
54
+ // authentication apiKeyAuth required
55
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
56
+
57
+ // authentication bearerAuth required
58
+ // http bearer authentication required
59
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
60
+
61
+ if (invoiceDate !== undefined) {
62
+ localVarQueryParameter['invoiceDate'] = (invoiceDate as any instanceof Date) ?
63
+ (invoiceDate as any).toISOString() :
64
+ invoiceDate;
65
+ }
66
+
67
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
68
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
69
+ }
70
+
71
+
72
+
73
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
74
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
75
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
76
+
77
+ return {
78
+ url: toPathString(localVarUrlObj),
79
+ options: localVarRequestOptions,
80
+ };
81
+ },
82
+ }
83
+ };
84
+
85
+ /**
86
+ * PremInvoiceListApi - functional programming interface
87
+ * @export
88
+ */
89
+ export const PremInvoiceListApiFp = function(configuration?: Configuration) {
90
+ const localVarAxiosParamCreator = PremInvoiceListApiAxiosParamCreator(configuration)
91
+ return {
92
+ /**
93
+ * Retrieves a list of Premium Invoices for individual subscribers.
94
+ * @summary Retrieve Premium Invoices for Individual Subscribers
95
+ * @param {string} vbasoftwareDatabase Target database
96
+ * @param {string} [invoiceDate] The date that the invoice was generated.
97
+ * @param {*} [options] Override http request option.
98
+ * @throws {RequiredError}
99
+ */
100
+ async listPremInvoicesIndividual(vbasoftwareDatabase: string, invoiceDate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PremInvoiceIndividualListVBAResponse>> {
101
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPremInvoicesIndividual(vbasoftwareDatabase, invoiceDate, options);
102
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
103
+ },
104
+ }
105
+ };
106
+
107
+ /**
108
+ * PremInvoiceListApi - factory interface
109
+ * @export
110
+ */
111
+ export const PremInvoiceListApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
112
+ const localVarFp = PremInvoiceListApiFp(configuration)
113
+ return {
114
+ /**
115
+ * Retrieves a list of Premium Invoices for individual subscribers.
116
+ * @summary Retrieve Premium Invoices for Individual Subscribers
117
+ * @param {string} vbasoftwareDatabase Target database
118
+ * @param {string} [invoiceDate] The date that the invoice was generated.
119
+ * @param {*} [options] Override http request option.
120
+ * @throws {RequiredError}
121
+ */
122
+ listPremInvoicesIndividual(vbasoftwareDatabase: string, invoiceDate?: string, options?: any): AxiosPromise<PremInvoiceIndividualListVBAResponse> {
123
+ return localVarFp.listPremInvoicesIndividual(vbasoftwareDatabase, invoiceDate, options).then((request) => request(axios, basePath));
124
+ },
125
+ };
126
+ };
127
+
128
+ /**
129
+ * PremInvoiceListApi - interface
130
+ * @export
131
+ * @interface PremInvoiceListApi
132
+ */
133
+ export interface PremInvoiceListApiInterface {
134
+ /**
135
+ * Retrieves a list of Premium Invoices for individual subscribers.
136
+ * @summary Retrieve Premium Invoices for Individual Subscribers
137
+ * @param {string} vbasoftwareDatabase Target database
138
+ * @param {string} [invoiceDate] The date that the invoice was generated.
139
+ * @param {*} [options] Override http request option.
140
+ * @throws {RequiredError}
141
+ * @memberof PremInvoiceListApiInterface
142
+ */
143
+ listPremInvoicesIndividual(vbasoftwareDatabase: string, invoiceDate?: string, options?: AxiosRequestConfig): AxiosPromise<PremInvoiceIndividualListVBAResponse>;
144
+
145
+ }
146
+
147
+ /**
148
+ * PremInvoiceListApi - object-oriented interface
149
+ * @export
150
+ * @class PremInvoiceListApi
151
+ * @extends {BaseAPI}
152
+ */
153
+ export class PremInvoiceListApi extends BaseAPI implements PremInvoiceListApiInterface {
154
+ /**
155
+ * Retrieves a list of Premium Invoices for individual subscribers.
156
+ * @summary Retrieve Premium Invoices for Individual Subscribers
157
+ * @param {string} vbasoftwareDatabase Target database
158
+ * @param {string} [invoiceDate] The date that the invoice was generated.
159
+ * @param {*} [options] Override http request option.
160
+ * @throws {RequiredError}
161
+ * @memberof PremInvoiceListApi
162
+ */
163
+ public listPremInvoicesIndividual(vbasoftwareDatabase: string, invoiceDate?: string, options?: AxiosRequestConfig) {
164
+ return PremInvoiceListApiFp(this.configuration).listPremInvoicesIndividual(vbasoftwareDatabase, invoiceDate, options).then((request) => request(this.axios, this.basePath));
165
+ }
166
+ }
package/api.ts CHANGED
@@ -404,6 +404,7 @@ export * from './api/group-contract-plans-api';
404
404
  export * from './api/group-contract-tiers-api';
405
405
  export * from './api/group-contracts-api';
406
406
  export * from './api/group-coverage-calculations-api';
407
+ export * from './api/group-disenroll-affected-claims-api';
407
408
  export * from './api/group-division-captives-api';
408
409
  export * from './api/group-division-cobras-api';
409
410
  export * from './api/group-division-deduction-types-api';
@@ -584,6 +585,7 @@ export * from './api/plans-api';
584
585
  export * from './api/policy-forfeiture-ext-api';
585
586
  export * from './api/policy-forfeiture-ext-details-api';
586
587
  export * from './api/policy-statuses-api';
588
+ export * from './api/prem-invoice-list-api';
587
589
  export * from './api/prem-rate-types-api';
588
590
  export * from './api/premium-claim-api';
589
591
  export * from './api/premium-distributions-api';
package/models/index.ts CHANGED
@@ -1638,6 +1638,8 @@ export * from './prem-invoice-adjustment-list-vbaresponse';
1638
1638
  export * from './prem-invoice-adjustment-vbaresponse';
1639
1639
  export * from './prem-invoice-group-summary';
1640
1640
  export * from './prem-invoice-group-summary-vbaresponse';
1641
+ export * from './prem-invoice-individual';
1642
+ export * from './prem-invoice-individual-list-vbaresponse';
1641
1643
  export * from './prem-invoice-list-vbaresponse';
1642
1644
  export * from './prem-invoice-payment';
1643
1645
  export * from './prem-invoice-payment-ext';
@@ -2268,6 +2270,8 @@ export * from './vbagroup-contract';
2268
2270
  export * from './vbagroup-contract-enrollment-summary';
2269
2271
  export * from './vbagroup-contract-enrollment-summary-list-vbaresponse';
2270
2272
  export * from './vbagroup-contract-list-vbaresponse';
2273
+ export * from './vbagroup-disenroll-affected-claims';
2274
+ export * from './vbagroup-disenroll-affected-claims-list-vbaresponse';
2271
2275
  export * from './vbagroup-enrollment-summary';
2272
2276
  export * from './vbagroup-enrollment-summary-vbaresponse';
2273
2277
  export * from './vbagroup-idcard-selection';
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { Debug } from './debug';
17
+ import { PremInvoiceIndividual } from './prem-invoice-individual';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PremInvoiceIndividualListVBAResponse
24
+ */
25
+ export interface PremInvoiceIndividualListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<PremInvoiceIndividual>}
29
+ * @memberof PremInvoiceIndividualListVBAResponse
30
+ */
31
+ 'data'?: Array<PremInvoiceIndividual> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof PremInvoiceIndividualListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof PremInvoiceIndividualListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,102 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface PremInvoiceIndividual
21
+ */
22
+ export interface PremInvoiceIndividual {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof PremInvoiceIndividual
27
+ */
28
+ 'selected'?: number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PremInvoiceIndividual
33
+ */
34
+ 'group_ID'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PremInvoiceIndividual
39
+ */
40
+ 'division_ID'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PremInvoiceIndividual
45
+ */
46
+ 'subscriber_ID'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PremInvoiceIndividual
51
+ */
52
+ 'subscriberName'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PremInvoiceIndividual
57
+ */
58
+ 'bill_Cycle'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PremInvoiceIndividual
63
+ */
64
+ 'last_Bill_Thru'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof PremInvoiceIndividual
69
+ */
70
+ 'invoice_Date'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PremInvoiceIndividual
75
+ */
76
+ 'bill_From'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof PremInvoiceIndividual
81
+ */
82
+ 'bill_Thru'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PremInvoiceIndividual
87
+ */
88
+ 'inv_Date_Bill_From'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof PremInvoiceIndividual
93
+ */
94
+ 'inv_Date_Bill_Thru'?: string | null;
95
+ /**
96
+ *
97
+ * @type {number}
98
+ * @memberof PremInvoiceIndividual
99
+ */
100
+ 'bill_Date_Option'?: number;
101
+ }
102
+
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * VBASoftware
5
+ * APIs for VBASoftware
6
+ *
7
+ * The version of the OpenAPI document: v1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { Debug } from './debug';
17
+ import { VBAGroupDisenrollAffectedClaims } from './vbagroup-disenroll-affected-claims';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAGroupDisenrollAffectedClaimsListVBAResponse
24
+ */
25
+ export interface VBAGroupDisenrollAffectedClaimsListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<VBAGroupDisenrollAffectedClaims>}
29
+ * @memberof VBAGroupDisenrollAffectedClaimsListVBAResponse
30
+ */
31
+ 'data'?: Array<VBAGroupDisenrollAffectedClaims> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAGroupDisenrollAffectedClaimsListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAGroupDisenrollAffectedClaimsListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+