@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
package/models/vbaapp-info.ts
CHANGED
|
@@ -22,40 +22,46 @@ import { FileDetail } from './file-detail';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface VBAAppInfo {
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* The current version of the application.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof VBAAppInfo
|
|
28
28
|
*/
|
|
29
29
|
'version'?: string | null;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* A list of file details related to the release, such as installation files or updates.
|
|
32
32
|
* @type {Array<FileDetail>}
|
|
33
33
|
* @memberof VBAAppInfo
|
|
34
34
|
*/
|
|
35
35
|
'files'?: Array<FileDetail> | null;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* The path where the application files are located.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof VBAAppInfo
|
|
40
40
|
*/
|
|
41
41
|
'path'?: string | null;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* A SHA-512 hash for verifying the integrity of the main application file.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof VBAAppInfo
|
|
46
46
|
*/
|
|
47
47
|
'sha512'?: string | null;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Notes about changes, enhancements, or fixes in this release.
|
|
50
50
|
* @type {string}
|
|
51
51
|
* @memberof VBAAppInfo
|
|
52
52
|
*/
|
|
53
53
|
'releaseNotes'?: string | null;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* The date when the release was made available.
|
|
56
56
|
* @type {string}
|
|
57
57
|
* @memberof VBAAppInfo
|
|
58
58
|
*/
|
|
59
59
|
'releaseDate'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* A user-friendly message or announcement associated with the release.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof VBAAppInfo
|
|
64
|
+
*/
|
|
65
|
+
'releaseMessage'?: string | null;
|
|
60
66
|
}
|
|
61
67
|
|
|
@@ -0,0 +1,96 @@
|
|
|
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 VBABenefitInquiryRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface VBABenefitInquiryRequest {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VBABenefitInquiryRequest
|
|
27
|
+
*/
|
|
28
|
+
'subscriber_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBABenefitInquiryRequest
|
|
33
|
+
*/
|
|
34
|
+
'member_Seq'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBABenefitInquiryRequest
|
|
39
|
+
*/
|
|
40
|
+
'group_ID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof VBABenefitInquiryRequest
|
|
45
|
+
*/
|
|
46
|
+
'plan_ID'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof VBABenefitInquiryRequest
|
|
51
|
+
*/
|
|
52
|
+
'plan_Year'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof VBABenefitInquiryRequest
|
|
57
|
+
*/
|
|
58
|
+
'diag_Code'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof VBABenefitInquiryRequest
|
|
63
|
+
*/
|
|
64
|
+
'diag_Code_Type'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof VBABenefitInquiryRequest
|
|
69
|
+
*/
|
|
70
|
+
'procedure_Code'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof VBABenefitInquiryRequest
|
|
75
|
+
*/
|
|
76
|
+
'place_Of_Service'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof VBABenefitInquiryRequest
|
|
81
|
+
*/
|
|
82
|
+
'service_Type'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof VBABenefitInquiryRequest
|
|
87
|
+
*/
|
|
88
|
+
'taxonomy_Code'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof VBABenefitInquiryRequest
|
|
93
|
+
*/
|
|
94
|
+
'as_Of_Date'?: string;
|
|
95
|
+
}
|
|
96
|
+
|
|
@@ -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 { VBABenefitInquiry } from './vbabenefit-inquiry';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBABenefitInquiryVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBABenefitInquiryVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {VBABenefitInquiry}
|
|
29
|
+
* @memberof VBABenefitInquiryVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: VBABenefitInquiry;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBABenefitInquiryVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBABenefitInquiryVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,122 @@
|
|
|
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 { AccumulatorDetailResult } from './accumulator-detail-result';
|
|
17
|
+
import { CoveredBenefit } from './covered-benefit';
|
|
18
|
+
import { EligDetail } from './elig-detail';
|
|
19
|
+
import { GetPlanMaxSummaryResult } from './get-plan-max-summary-result';
|
|
20
|
+
import { IDCodeValueResultBySource } from './idcode-value-result-by-source';
|
|
21
|
+
import { MemberDetail } from './member-detail';
|
|
22
|
+
import { MemberEligibilityStatus } from './member-eligibility-status';
|
|
23
|
+
import { MemberInsurance } from './member-insurance';
|
|
24
|
+
import { MemberProvider } from './member-provider';
|
|
25
|
+
import { PlanBenefitsPlaceAuth } from './plan-benefits-place-auth';
|
|
26
|
+
import { PlanBenefitsPlaceCoIns } from './plan-benefits-place-co-ins';
|
|
27
|
+
import { PlanBenefitsPlaceCoPay } from './plan-benefits-place-co-pay';
|
|
28
|
+
import { Plans } from './plans';
|
|
29
|
+
import { SubscriberDetail } from './subscriber-detail';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface VBABenefitInquiry
|
|
35
|
+
*/
|
|
36
|
+
export interface VBABenefitInquiry {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {SubscriberDetail}
|
|
40
|
+
* @memberof VBABenefitInquiry
|
|
41
|
+
*/
|
|
42
|
+
'subscriber'?: SubscriberDetail;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {MemberDetail}
|
|
46
|
+
* @memberof VBABenefitInquiry
|
|
47
|
+
*/
|
|
48
|
+
'member'?: MemberDetail;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Array<EligDetail>}
|
|
52
|
+
* @memberof VBABenefitInquiry
|
|
53
|
+
*/
|
|
54
|
+
'eligDetails'?: Array<EligDetail> | null;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {Array<MemberInsurance>}
|
|
58
|
+
* @memberof VBABenefitInquiry
|
|
59
|
+
*/
|
|
60
|
+
'memberInsurances'?: Array<MemberInsurance> | null;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {Array<MemberProvider>}
|
|
64
|
+
* @memberof VBABenefitInquiry
|
|
65
|
+
*/
|
|
66
|
+
'memberProviders'?: Array<MemberProvider> | null;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {Array<MemberEligibilityStatus>}
|
|
70
|
+
* @memberof VBABenefitInquiry
|
|
71
|
+
*/
|
|
72
|
+
'memberEligibilityStatuses'?: Array<MemberEligibilityStatus> | null;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {Array<IDCodeValueResultBySource>}
|
|
76
|
+
* @memberof VBABenefitInquiry
|
|
77
|
+
*/
|
|
78
|
+
'codeValues'?: Array<IDCodeValueResultBySource> | null;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {Plans}
|
|
82
|
+
* @memberof VBABenefitInquiry
|
|
83
|
+
*/
|
|
84
|
+
'plans'?: Plans;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {Array<CoveredBenefit>}
|
|
88
|
+
* @memberof VBABenefitInquiry
|
|
89
|
+
*/
|
|
90
|
+
'coveredBenefits'?: Array<CoveredBenefit> | null;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {Array<PlanBenefitsPlaceAuth>}
|
|
94
|
+
* @memberof VBABenefitInquiry
|
|
95
|
+
*/
|
|
96
|
+
'planBenAuths'?: Array<PlanBenefitsPlaceAuth> | null;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {Array<PlanBenefitsPlaceCoPay>}
|
|
100
|
+
* @memberof VBABenefitInquiry
|
|
101
|
+
*/
|
|
102
|
+
'planBenCoPays'?: Array<PlanBenefitsPlaceCoPay> | null;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {Array<PlanBenefitsPlaceCoIns>}
|
|
106
|
+
* @memberof VBABenefitInquiry
|
|
107
|
+
*/
|
|
108
|
+
'planBenCoInsurances'?: Array<PlanBenefitsPlaceCoIns> | null;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {Array<AccumulatorDetailResult>}
|
|
112
|
+
* @memberof VBABenefitInquiry
|
|
113
|
+
*/
|
|
114
|
+
'accumulatorDetail'?: Array<AccumulatorDetailResult> | null;
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @type {Array<GetPlanMaxSummaryResult>}
|
|
118
|
+
* @memberof VBABenefitInquiry
|
|
119
|
+
*/
|
|
120
|
+
'planMaxSummaryResults'?: Array<GetPlanMaxSummaryResult> | null;
|
|
121
|
+
}
|
|
122
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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 VBADisabilityAdvisorDeduction
|
|
21
|
+
*/
|
|
22
|
+
export interface VBADisabilityAdvisorDeduction {
|
|
23
|
+
/**
|
|
24
|
+
* This is the deduction to be applied, this must be a valid value from the DeductionType table.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
27
|
+
*/
|
|
28
|
+
'deductionType'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* This indicates if the value in DeductionAmount is a Pct deduction.
|
|
31
|
+
* @type {boolean}
|
|
32
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
33
|
+
*/
|
|
34
|
+
'deductionPct'?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* This is the amount of the Deduction. If DeductionPct is true, then this value must be between 0 - 100.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
39
|
+
*/
|
|
40
|
+
'deductionAmount'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
* This is the Case Number for the deduction. Information only.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
45
|
+
*/
|
|
46
|
+
'caseNumber'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* This indicates if the deduction should spawn a 3rd party payment which is a separate Professional claim for the deduction.
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
51
|
+
*/
|
|
52
|
+
'thirdPartyPayment'?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* When ThirdPartyPayment is true, this is the ProviderID for the 3rd party payment.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
57
|
+
*/
|
|
58
|
+
'providerID'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* This indicates if the deduction should be applied before taxes are calculated.
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
63
|
+
*/
|
|
64
|
+
'preTax'?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* This indicates if the deduction should be applied before the gross amount is calculated.
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof VBADisabilityAdvisorDeduction
|
|
69
|
+
*/
|
|
70
|
+
'preGross'?: boolean;
|
|
71
|
+
}
|
|
72
|
+
|