@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240913.2 → 1.20241220.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.
- package/.openapi-generator/FILES +77 -2
- package/api/accounting-api.ts +101 -0
- package/api/adv-accounting-api.ts +199 -0
- package/api/adv-billing-api.ts +926 -57
- package/api/adv-capitation-api.ts +99 -0
- package/api/adv-claim-api.ts +529 -0
- package/api/adv-enrollment-api.ts +204 -4
- package/api/adv-reinsurance-api.ts +97 -0
- package/api/billing-api.ts +198 -0
- package/api/capitations-api.ts +99 -0
- package/api/care-case-clinical-facts-api.ts +71 -167
- package/api/check-batches-api.ts +87 -0
- package/api/checks-api.ts +292 -0
- package/api/claim-invoice-adjustment-reasons-api.ts +677 -0
- package/api/claim-invoice-adjustment-received-api.ts +685 -0
- package/api/claim-invoice-adjustments-api.ts +693 -0
- package/api/claim-invoice-api.ts +677 -0
- package/api/claim-invoice-details-api.ts +741 -0
- package/api/claim-invoice-payments-api.ts +725 -0
- package/api/claim-invoice-received-api.ts +693 -0
- package/api/claim-payments-api.ts +677 -0
- package/api/enrollment-accumulators-api.ts +909 -0
- package/api/events-api.ts +87 -0
- package/api/members-api.ts +206 -0
- package/api/prem-invoice-api.ts +171 -0
- package/api/premium-invoices-api.ts +95 -0
- package/api/premium-payments-api.ts +133 -0
- package/api/premium-rates-api.ts +223 -39
- package/api/reinsurance-contracts-api.ts +97 -0
- package/api/security-area-user-groups-api.ts +118 -5
- package/api/subscribers-api.ts +5 -5
- package/api/vbagateway-messaging-api.ts +379 -0
- package/api/vbareports-api.ts +112 -15
- package/api.ts +10 -0
- package/models/accounting-withhold-check-config.ts +36 -0
- package/models/accumulator-added-accum-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-added-accum-detail-result.ts +378 -0
- package/models/accumulator-all-benefit-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-all-benefit-detail-result.ts +420 -0
- package/models/{prem-invoice-generate-inv-list-result-list-vbaresponse.ts → accumulator-benefit-detail-result-list-vbaresponse.ts} +8 -8
- package/models/accumulator-benefit-detail-result.ts +414 -0
- package/models/accumulator-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-detail-result.ts +402 -0
- package/models/benefit-codes.ts +18 -18
- package/models/billing-add-rate-from-template-config.ts +42 -0
- package/models/billing-apply-payment-config.ts +74 -0
- package/models/billing-auto-apply-config.ts +84 -0
- package/models/billing-rate-modify-config.ts +140 -0
- package/models/capitation-generate.ts +12 -0
- package/models/care-case-clinical-fact.ts +1 -1
- package/models/claim-batch-claim-batch-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason.ts +60 -0
- package/models/claim-invoice-adjustment-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received.ts +78 -0
- package/models/claim-invoice-adjustment-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment.ts +90 -0
- package/models/claim-invoice-config.ts +37 -0
- package/models/claim-invoice-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail.ts +66 -0
- package/models/claim-invoice-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment.ts +72 -0
- package/models/claim-invoice-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-received.ts +78 -0
- package/models/claim-invoice-vbaresponse.ts +45 -0
- package/models/claim-invoice.ts +90 -0
- package/models/claim-payment-list-vbaresponse.ts +45 -0
- package/models/claim-payment-vbaresponse.ts +45 -0
- package/models/claim-payment.ts +96 -0
- package/models/commission-adjustment.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/covered-benefit.ts +49 -0
- package/models/elig-detail.ts +114 -0
- package/models/email-report-dto.ts +0 -6
- package/models/enrollment-disenroll-adjustment-list-vbaresponse.ts +45 -0
- package/models/enrollment-disenroll-adjustment.ts +138 -0
- package/models/fax-report-dto.ts +0 -6
- package/models/file-detail.ts +4 -4
- package/models/fundaccountbalancelist.ts +114 -0
- package/models/get-plan-max-claim-detail-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-claim-detail-result.ts +180 -0
- package/models/get-plan-max-summary-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-summary-result.ts +114 -0
- package/models/get-subscriber-disenroll-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-subscriber-disenroll-adjustments-result.ts +144 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result.ts +132 -0
- package/models/idcard-request-report-series-config.ts +30 -0
- package/models/index.ts +67 -2
- package/models/json-node-options.ts +1 -7
- package/models/member-detail.ts +102 -0
- package/models/message-thread-vbaresponse.ts +45 -0
- package/models/message-thread.ts +60 -0
- package/models/messages-vbaresponse.ts +45 -0
- package/models/messages.ts +66 -0
- package/models/prem-apply-payment-category-result-list-vbaresponse.ts +45 -0
- package/models/prem-apply-payment-category-result.ts +102 -0
- package/models/search-request.ts +12 -0
- package/models/security-area-user-group.ts +26 -2
- package/models/subscriber-detail.ts +144 -0
- package/models/vbaapp-info.ts +12 -6
- package/models/vbabenefit-inquiry-request.ts +96 -0
- package/models/vbabenefit-inquiry-vbaresponse.ts +45 -0
- package/models/vbabenefit-inquiry.ts +122 -0
- package/models/vbadisability-advisor-deduction.ts +72 -0
- package/models/vbadisability-advisor.ts +571 -0
- package/models/vbareport-vbaresponse.ts +45 -0
- package/models/vbareport.ts +7 -7
- package/package.json +1 -1
- package/models/prem-invoice-generate-inv-list-result.ts +0 -138
|
@@ -0,0 +1,138 @@
|
|
|
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 EnrollmentDisenrollAdjustment
|
|
21
|
+
*/
|
|
22
|
+
export interface EnrollmentDisenrollAdjustment {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
27
|
+
*/
|
|
28
|
+
'selected'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
33
|
+
*/
|
|
34
|
+
'invoice_Key'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
39
|
+
*/
|
|
40
|
+
'invoice_Number'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
45
|
+
*/
|
|
46
|
+
'invoice_Date'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
51
|
+
*/
|
|
52
|
+
'billing_From'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
57
|
+
*/
|
|
58
|
+
'billing_Thru'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
63
|
+
*/
|
|
64
|
+
'group_ID'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
69
|
+
*/
|
|
70
|
+
'division_ID'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
75
|
+
*/
|
|
76
|
+
'premRate_Key'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
81
|
+
*/
|
|
82
|
+
'rate_Type'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
87
|
+
*/
|
|
88
|
+
'rate_Description'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
93
|
+
*/
|
|
94
|
+
'invoice_Days'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
99
|
+
*/
|
|
100
|
+
'proRate_Days'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
105
|
+
*/
|
|
106
|
+
'invoice_Amount'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
111
|
+
*/
|
|
112
|
+
'invoice_Received'?: number | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
117
|
+
*/
|
|
118
|
+
'invoice_Amount_Per_Day'?: number | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {number}
|
|
122
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
123
|
+
*/
|
|
124
|
+
'proRate_Amount'?: number | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
129
|
+
*/
|
|
130
|
+
'adjustment_Amount'?: number | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {number}
|
|
134
|
+
* @memberof EnrollmentDisenrollAdjustment
|
|
135
|
+
*/
|
|
136
|
+
'auto_Adjust'?: number | null;
|
|
137
|
+
}
|
|
138
|
+
|
package/models/fax-report-dto.ts
CHANGED
|
@@ -57,12 +57,6 @@ export interface FaxReportDTO {
|
|
|
57
57
|
* @memberof FaxReportDTO
|
|
58
58
|
*/
|
|
59
59
|
'exportType'?: string | null;
|
|
60
|
-
/**
|
|
61
|
-
* Client specific Site ID within the report server. This is typically their Client ID, but may be different based on client needs.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof FaxReportDTO
|
|
64
|
-
*/
|
|
65
|
-
'siteId'?: string | null;
|
|
66
60
|
/**
|
|
67
61
|
* Filename of the report.
|
|
68
62
|
* @type {string}
|
package/models/file-detail.ts
CHANGED
|
@@ -15,25 +15,25 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Represents details of individual files included in the release.
|
|
19
19
|
* @export
|
|
20
20
|
* @interface FileDetail
|
|
21
21
|
*/
|
|
22
22
|
export interface FileDetail {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* The URL where the file can be downloaded.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof FileDetail
|
|
27
27
|
*/
|
|
28
28
|
'url'?: string | null;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* A SHA-512 hash for verifying the integrity of this specific file.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof FileDetail
|
|
33
33
|
*/
|
|
34
34
|
'sha512'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* The size of the file in bytes.
|
|
37
37
|
* @type {number}
|
|
38
38
|
* @memberof FileDetail
|
|
39
39
|
*/
|
|
@@ -0,0 +1,114 @@
|
|
|
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 FUNDACCOUNTBALANCELIST
|
|
21
|
+
*/
|
|
22
|
+
export interface FUNDACCOUNTBALANCELIST {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
27
|
+
*/
|
|
28
|
+
'generateRequest'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
33
|
+
*/
|
|
34
|
+
'generateFullRequest'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
39
|
+
*/
|
|
40
|
+
'candZeroPay'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
45
|
+
*/
|
|
46
|
+
'genReqEmail'?: number;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
51
|
+
*/
|
|
52
|
+
'payor_ID'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
57
|
+
*/
|
|
58
|
+
'account_Key'?: number | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
63
|
+
*/
|
|
64
|
+
'payor_Name'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
69
|
+
*/
|
|
70
|
+
'payor_Contact'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
75
|
+
*/
|
|
76
|
+
'payor_Fax_Number'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
81
|
+
*/
|
|
82
|
+
'account_Name'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
87
|
+
*/
|
|
88
|
+
'account_Balance'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
93
|
+
*/
|
|
94
|
+
'candidate_Balance'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
99
|
+
*/
|
|
100
|
+
'requested_Balance'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
105
|
+
*/
|
|
106
|
+
'hold_Balance'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof FUNDACCOUNTBALANCELIST
|
|
111
|
+
*/
|
|
112
|
+
'hold_Count'?: number | null;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -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 { GetPlanMaxClaimDetailResult } from './get-plan-max-claim-detail-result';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface GetPlanMaxClaimDetailResultListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface GetPlanMaxClaimDetailResultListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<GetPlanMaxClaimDetailResult>}
|
|
29
|
+
* @memberof GetPlanMaxClaimDetailResultListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<GetPlanMaxClaimDetailResult> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof GetPlanMaxClaimDetailResultListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof GetPlanMaxClaimDetailResultListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,180 @@
|
|
|
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 GetPlanMaxClaimDetailResult
|
|
21
|
+
*/
|
|
22
|
+
export interface GetPlanMaxClaimDetailResult {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
27
|
+
*/
|
|
28
|
+
'claim_Number'?: number | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
33
|
+
*/
|
|
34
|
+
'claim_Seq'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
39
|
+
*/
|
|
40
|
+
'plan_ID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
45
|
+
*/
|
|
46
|
+
'benefit_Code'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
51
|
+
*/
|
|
52
|
+
'provider_ID'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
57
|
+
*/
|
|
58
|
+
'visit'?: number | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
63
|
+
*/
|
|
64
|
+
'invalid_Visit'?: number | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
69
|
+
*/
|
|
70
|
+
'service_Date'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
75
|
+
*/
|
|
76
|
+
'month_Service_Date'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
81
|
+
*/
|
|
82
|
+
'year_Service_Date'?: number | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
87
|
+
*/
|
|
88
|
+
'procedure_Code'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
93
|
+
*/
|
|
94
|
+
'units'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
99
|
+
*/
|
|
100
|
+
'service_Days'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
105
|
+
*/
|
|
106
|
+
'tooth_Number'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
111
|
+
*/
|
|
112
|
+
'coB_Savings'?: number | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
117
|
+
*/
|
|
118
|
+
'coB_Savings_Used'?: number | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {number}
|
|
122
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
123
|
+
*/
|
|
124
|
+
'billed_Price'?: number | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
129
|
+
*/
|
|
130
|
+
'plan_Price'?: number | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {number}
|
|
134
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
135
|
+
*/
|
|
136
|
+
'co_Pay_Amt'?: number | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {number}
|
|
140
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
141
|
+
*/
|
|
142
|
+
'co_Ins_Amt'?: number | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {number}
|
|
146
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
147
|
+
*/
|
|
148
|
+
'deductible_Amt'?: number | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {number}
|
|
152
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
153
|
+
*/
|
|
154
|
+
'not_Covered_Amt'?: number | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {number}
|
|
158
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
159
|
+
*/
|
|
160
|
+
'paid_Amt'?: number | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {number}
|
|
164
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
165
|
+
*/
|
|
166
|
+
'ooP_Amt'?: number | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {number}
|
|
170
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
171
|
+
*/
|
|
172
|
+
'valid_Visits'?: number | null;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof GetPlanMaxClaimDetailResult
|
|
177
|
+
*/
|
|
178
|
+
'network_ID'?: string | null;
|
|
179
|
+
}
|
|
180
|
+
|
|
@@ -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 { GetPlanMaxSummaryResult } from './get-plan-max-summary-result';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface GetPlanMaxSummaryResultListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface GetPlanMaxSummaryResultListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<GetPlanMaxSummaryResult>}
|
|
29
|
+
* @memberof GetPlanMaxSummaryResultListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<GetPlanMaxSummaryResult> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof GetPlanMaxSummaryResultListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof GetPlanMaxSummaryResultListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
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 GetPlanMaxSummaryResult
|
|
21
|
+
*/
|
|
22
|
+
export interface GetPlanMaxSummaryResult {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GetPlanMaxSummaryResult
|
|
27
|
+
*/
|
|
28
|
+
'as_Of_Date'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof GetPlanMaxSummaryResult
|
|
33
|
+
*/
|
|
34
|
+
'amount_Met'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GetPlanMaxSummaryResult
|
|
39
|
+
*/
|
|
40
|
+
'visits_Met'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof GetPlanMaxSummaryResult
|
|
45
|
+
*/
|
|
46
|
+
'plan_ID'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GetPlanMaxSummaryResult
|
|
51
|
+
*/
|
|
52
|
+
'benefit_Code'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof GetPlanMaxSummaryResult
|
|
57
|
+
*/
|
|
58
|
+
'max_ID'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof GetPlanMaxSummaryResult
|
|
63
|
+
*/
|
|
64
|
+
'max_Type'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof GetPlanMaxSummaryResult
|
|
69
|
+
*/
|
|
70
|
+
'max_Type_Net'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof GetPlanMaxSummaryResult
|
|
75
|
+
*/
|
|
76
|
+
'quantity'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof GetPlanMaxSummaryResult
|
|
81
|
+
*/
|
|
82
|
+
'max_Per'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof GetPlanMaxSummaryResult
|
|
87
|
+
*/
|
|
88
|
+
'frequency'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof GetPlanMaxSummaryResult
|
|
93
|
+
*/
|
|
94
|
+
'from_Procedure'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof GetPlanMaxSummaryResult
|
|
99
|
+
*/
|
|
100
|
+
'thru_Procedure'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof GetPlanMaxSummaryResult
|
|
105
|
+
*/
|
|
106
|
+
'max_From'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof GetPlanMaxSummaryResult
|
|
111
|
+
*/
|
|
112
|
+
'max_Thru'?: string | null;
|
|
113
|
+
}
|
|
114
|
+
|