@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230518.1 → 1.20230616.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 +29 -1
- package/api/claim-batch-logs-api.ts +668 -0
- package/api/claim-batch-references-api.ts +764 -0
- package/api/claim-batches-api.ts +17 -8
- package/api/error-category-api.ts +668 -0
- package/api/error-category-types-api.ts +725 -0
- package/api/error-severity-api.ts +668 -0
- package/api/error-type-api.ts +668 -0
- package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
- package/api/fee-schedule-details-api.ts +68 -107
- package/api/fee-schedule-modifier-discounts-api.ts +68 -107
- package/api/fee-schedule-modifier-excludes-api.ts +68 -107
- package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
- package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
- package/api/funding-request-claims-api.ts +8 -26
- package/api/member-account-plans-api.ts +10 -10
- package/api/payor-accounts-api.ts +105 -0
- package/api/reinsurance-contract-transactions-api.ts +97 -0
- package/api/user-api.ts +98 -0
- package/api.ts +7 -1
- package/models/claim-batch-log-list-vbaresponse.ts +45 -0
- package/models/claim-batch-log-vbaresponse.ts +45 -0
- package/models/claim-batch-log.ts +96 -0
- package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
- package/models/claim-batch-reference-vbaresponse.ts +45 -0
- package/models/claim-batch-reference.ts +84 -0
- package/models/company-data.ts +24 -0
- package/models/error-category-list-vbaresponse.ts +45 -0
- package/models/error-category-type-list-vbaresponse.ts +45 -0
- package/models/error-category-type-vbaresponse.ts +45 -0
- package/models/error-category-type.ts +78 -0
- package/models/error-category-vbaresponse.ts +45 -0
- package/models/error-category.ts +60 -0
- package/models/error-severity-list-vbaresponse.ts +45 -0
- package/models/error-severity-vbaresponse.ts +45 -0
- package/models/error-severity.ts +60 -0
- package/models/error-type-list-vbaresponse.ts +45 -0
- package/models/error-type-vbaresponse.ts +45 -0
- package/models/error-type.ts +60 -0
- package/models/fee-sched-anesthesia.ts +25 -1
- package/models/fee-sched-detail.ts +28 -4
- package/models/fee-sched-modifier-discount.ts +27 -3
- package/models/fee-sched-modifier-exclude.ts +25 -1
- package/models/fee-sched-procedure-group-adjust.ts +30 -6
- package/models/fee-sched-provider-type-discount.ts +27 -3
- package/models/idcode-value.ts +25 -1
- package/models/index.ts +22 -0
- package/models/prem-payment-file-format.ts +14 -8
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
- package/models/vbafunding-account-claim-info.ts +276 -0
- package/models/vbareins-contract-transaction-summary-list-vbaresponse.ts +45 -0
- package/models/vbareins-contract-transaction-summary.ts +108 -0
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface FeeSchedProviderTypeDiscount {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier assigned to the provider type discount.
|
|
24
|
+
* Unique identifier assigned to the provider type discount. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof FeeSchedProviderTypeDiscount
|
|
27
27
|
*/
|
|
@@ -33,17 +33,29 @@ export interface FeeSchedProviderTypeDiscount {
|
|
|
33
33
|
*/
|
|
34
34
|
'discount_Pct'?: number | null;
|
|
35
35
|
/**
|
|
36
|
-
* Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.)
|
|
36
|
+
* Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.) Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
37
37
|
* @type {number}
|
|
38
38
|
* @memberof FeeSchedProviderTypeDiscount
|
|
39
39
|
*/
|
|
40
40
|
'discount_Seq': number;
|
|
41
41
|
/**
|
|
42
|
-
* Date when the discount will begin/began applying to claims. This date will be compared to the date of service on the claim.
|
|
42
|
+
* Date when the discount will begin/began applying to claims. This date will be compared to the date of service on the claim. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof FeeSchedProviderTypeDiscount
|
|
45
45
|
*/
|
|
46
46
|
'effective_Date': string;
|
|
47
|
+
/**
|
|
48
|
+
* User that first added the record to the system.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof FeeSchedProviderTypeDiscount
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Date when the record was first added to the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof FeeSchedProviderTypeDiscount
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
47
59
|
/**
|
|
48
60
|
* Unique name given to the Fee Scheudle.
|
|
49
61
|
* @type {string}
|
|
@@ -56,5 +68,17 @@ export interface FeeSchedProviderTypeDiscount {
|
|
|
56
68
|
* @memberof FeeSchedProviderTypeDiscount
|
|
57
69
|
*/
|
|
58
70
|
'provider_Type'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof FeeSchedProviderTypeDiscount
|
|
75
|
+
*/
|
|
76
|
+
'update_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Date when the record was last updated in the system.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof FeeSchedProviderTypeDiscount
|
|
81
|
+
*/
|
|
82
|
+
'update_User'?: string | null;
|
|
59
83
|
}
|
|
60
84
|
|
package/models/idcode-value.ts
CHANGED
|
@@ -21,11 +21,23 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface IDCodeValue {
|
|
23
23
|
/**
|
|
24
|
-
* Key value identifying a specific ID Code value
|
|
24
|
+
* Key value identifying a specific ID Code value Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof IDCodeValue
|
|
27
27
|
*/
|
|
28
28
|
'idCodeValue_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Date record was first added to the system
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof IDCodeValue
|
|
33
|
+
*/
|
|
34
|
+
'entry_Date'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* User that first added the record to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof IDCodeValue
|
|
39
|
+
*/
|
|
40
|
+
'entry_User'?: string | null;
|
|
29
41
|
/**
|
|
30
42
|
* Identifier for a specific ID Code
|
|
31
43
|
* @type {string}
|
|
@@ -158,5 +170,17 @@ export interface IDCodeValue {
|
|
|
158
170
|
* @memberof IDCodeValue
|
|
159
171
|
*/
|
|
160
172
|
'type': string;
|
|
173
|
+
/**
|
|
174
|
+
* Date the record was last updated in the system
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof IDCodeValue
|
|
177
|
+
*/
|
|
178
|
+
'update_Date'?: string;
|
|
179
|
+
/**
|
|
180
|
+
* User that last updated the record in the system
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof IDCodeValue
|
|
183
|
+
*/
|
|
184
|
+
'update_User'?: string | null;
|
|
161
185
|
}
|
|
162
186
|
|
package/models/index.ts
CHANGED
|
@@ -418,9 +418,15 @@ export * from './claim-batch-life-benefit-vbaresponse';
|
|
|
418
418
|
export * from './claim-batch-life-list-vbaresponse';
|
|
419
419
|
export * from './claim-batch-life-vbaresponse';
|
|
420
420
|
export * from './claim-batch-list-vbaresponse';
|
|
421
|
+
export * from './claim-batch-log';
|
|
422
|
+
export * from './claim-batch-log-list-vbaresponse';
|
|
423
|
+
export * from './claim-batch-log-vbaresponse';
|
|
421
424
|
export * from './claim-batch-plan';
|
|
422
425
|
export * from './claim-batch-plan-list-vbaresponse';
|
|
423
426
|
export * from './claim-batch-plan-vbaresponse';
|
|
427
|
+
export * from './claim-batch-reference';
|
|
428
|
+
export * from './claim-batch-reference-list-vbaresponse';
|
|
429
|
+
export * from './claim-batch-reference-vbaresponse';
|
|
424
430
|
export * from './claim-batch-type';
|
|
425
431
|
export * from './claim-batch-type-list-vbaresponse';
|
|
426
432
|
export * from './claim-batch-type-vbaresponse';
|
|
@@ -878,6 +884,18 @@ export * from './enrollment-waiting-period-subscriber';
|
|
|
878
884
|
export * from './enrollment-waiting-period-subscriber-list-vbaresponse';
|
|
879
885
|
export * from './enrollment-waiting-period-subscriber-vbaresponse';
|
|
880
886
|
export * from './enrollment-waiting-period-vbaresponse';
|
|
887
|
+
export * from './error-category';
|
|
888
|
+
export * from './error-category-list-vbaresponse';
|
|
889
|
+
export * from './error-category-type';
|
|
890
|
+
export * from './error-category-type-list-vbaresponse';
|
|
891
|
+
export * from './error-category-type-vbaresponse';
|
|
892
|
+
export * from './error-category-vbaresponse';
|
|
893
|
+
export * from './error-severity';
|
|
894
|
+
export * from './error-severity-list-vbaresponse';
|
|
895
|
+
export * from './error-severity-vbaresponse';
|
|
896
|
+
export * from './error-type';
|
|
897
|
+
export * from './error-type-list-vbaresponse';
|
|
898
|
+
export * from './error-type-vbaresponse';
|
|
881
899
|
export * from './ethnicity-code';
|
|
882
900
|
export * from './ethnicity-code-list-vbaresponse';
|
|
883
901
|
export * from './ethnicity-code-vbaresponse';
|
|
@@ -2202,6 +2220,8 @@ export * from './vbaauth';
|
|
|
2202
2220
|
export * from './vbaauth-vbaresponse';
|
|
2203
2221
|
export * from './vbacommission-rate-subscriber';
|
|
2204
2222
|
export * from './vbacommission-rate-subscriber-list-vbaresponse';
|
|
2223
|
+
export * from './vbafunding-account-claim-info';
|
|
2224
|
+
export * from './vbafunding-account-claim-info-list-vbaresponse';
|
|
2205
2225
|
export * from './vbafunding-request-claim-summary';
|
|
2206
2226
|
export * from './vbafunding-request-claim-summary-list-vbaresponse';
|
|
2207
2227
|
export * from './vbagateway-subscription';
|
|
@@ -2244,6 +2264,8 @@ export * from './vbaprocess-log-vbaresponse';
|
|
|
2244
2264
|
export * from './vbaprocess-parameter';
|
|
2245
2265
|
export * from './vbaprocess-parameter-vbaresponse';
|
|
2246
2266
|
export * from './vbaprocess-vbaresponse';
|
|
2267
|
+
export * from './vbareins-contract-transaction-summary';
|
|
2268
|
+
export * from './vbareins-contract-transaction-summary-list-vbaresponse';
|
|
2247
2269
|
export * from './volume';
|
|
2248
2270
|
export * from './workflow';
|
|
2249
2271
|
export * from './workflow-detail';
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface PremPaymentFileFormat {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier of the PremPaymentFileFormat table Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof PremPaymentFileFormat
|
|
27
27
|
*/
|
|
28
28
|
'payment_File_Format_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* PowerBuilder object that defines the file layout
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof PremPaymentFileFormat
|
|
33
33
|
*/
|
|
34
34
|
'business_Object'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Description of the File Format
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PremPaymentFileFormat
|
|
39
39
|
*/
|
|
40
40
|
'description'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Date record was first added to the system
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PremPaymentFileFormat
|
|
45
45
|
*/
|
|
46
46
|
'entry_Date'?: string;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* User that first added the record to the system
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof PremPaymentFileFormat
|
|
51
51
|
*/
|
|
52
52
|
'entry_User'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Not used
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof PremPaymentFileFormat
|
|
57
57
|
*/
|
|
58
58
|
'format'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Not used
|
|
61
61
|
* @type {number}
|
|
62
62
|
* @memberof PremPaymentFileFormat
|
|
63
63
|
*/
|
|
@@ -67,9 +67,15 @@ export interface PremPaymentFileFormat {
|
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof PremPaymentFileFormat
|
|
69
69
|
*/
|
|
70
|
+
'payment_Type'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Date the record was last updated in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PremPaymentFileFormat
|
|
75
|
+
*/
|
|
70
76
|
'update_Date'?: string;
|
|
71
77
|
/**
|
|
72
|
-
*
|
|
78
|
+
* User that last updated the record in the system
|
|
73
79
|
* @type {string}
|
|
74
80
|
* @memberof PremPaymentFileFormat
|
|
75
81
|
*/
|
|
@@ -62,6 +62,12 @@ export interface SubEnrollmentPlan {
|
|
|
62
62
|
* @memberof SubEnrollmentPlan
|
|
63
63
|
*/
|
|
64
64
|
'plan_Start': string;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof SubEnrollmentPlan
|
|
69
|
+
*/
|
|
70
|
+
'application_Received_Date'?: string | null;
|
|
65
71
|
/**
|
|
66
72
|
* The Subscriber\'s \'Volume\' within the selected plan on the enrollment. This will impact invoicing.
|
|
67
73
|
* @type {number}
|
|
@@ -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 { VBAFundingAccountClaimInfo } from './vbafunding-account-claim-info';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAFundingAccountClaimInfoListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAFundingAccountClaimInfoListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<VBAFundingAccountClaimInfo>}
|
|
29
|
+
* @memberof VBAFundingAccountClaimInfoListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<VBAFundingAccountClaimInfo> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBAFundingAccountClaimInfoListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBAFundingAccountClaimInfoListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,276 @@
|
|
|
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 VBAFundingAccountClaimInfo
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAFundingAccountClaimInfo {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
27
|
+
*/
|
|
28
|
+
'claim_Number'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
33
|
+
*/
|
|
34
|
+
'claimPaidAmount'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
39
|
+
*/
|
|
40
|
+
'claim_Funded_Status'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
45
|
+
*/
|
|
46
|
+
'serviceLines'?: number;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
51
|
+
*/
|
|
52
|
+
'claim_Status'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
57
|
+
*/
|
|
58
|
+
'payor_ID'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
63
|
+
*/
|
|
64
|
+
'account_Key'?: number | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
69
|
+
*/
|
|
70
|
+
'group_ID'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
75
|
+
*/
|
|
76
|
+
'division_ID'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
81
|
+
*/
|
|
82
|
+
'batch_Number'?: number | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
87
|
+
*/
|
|
88
|
+
'batch_Claim'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
93
|
+
*/
|
|
94
|
+
'provider_ID'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
99
|
+
*/
|
|
100
|
+
'subscriber_ID'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
105
|
+
*/
|
|
106
|
+
'member_Seq'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
111
|
+
*/
|
|
112
|
+
'payee_ID'?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
117
|
+
*/
|
|
118
|
+
'provider_First_Name'?: string | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
123
|
+
*/
|
|
124
|
+
'provider_Last_Name'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
129
|
+
*/
|
|
130
|
+
'org_Name'?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
135
|
+
*/
|
|
136
|
+
'payee_Name'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
141
|
+
*/
|
|
142
|
+
'member_First_Name'?: string | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
147
|
+
*/
|
|
148
|
+
'member_Last_Name'?: string | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
153
|
+
*/
|
|
154
|
+
'first_Name'?: string | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
159
|
+
*/
|
|
160
|
+
'last_Name'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
165
|
+
*/
|
|
166
|
+
'long_Name'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
171
|
+
*/
|
|
172
|
+
'iD_Code_Data'?: string | null;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
177
|
+
*/
|
|
178
|
+
'service_Date'?: string | null;
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
183
|
+
*/
|
|
184
|
+
'service_Thru'?: string | null;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {string}
|
|
188
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
189
|
+
*/
|
|
190
|
+
'send_Check_To'?: string | null;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
195
|
+
*/
|
|
196
|
+
'payToId'?: string | null;
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @type {string}
|
|
200
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
201
|
+
*/
|
|
202
|
+
'payToName'?: string | null;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* @type {number}
|
|
206
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
207
|
+
*/
|
|
208
|
+
'selected'?: number;
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {number}
|
|
212
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
213
|
+
*/
|
|
214
|
+
'specClaim'?: number;
|
|
215
|
+
/**
|
|
216
|
+
*
|
|
217
|
+
* @type {number}
|
|
218
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
219
|
+
*/
|
|
220
|
+
'reinsClaim'?: number;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @type {number}
|
|
224
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
225
|
+
*/
|
|
226
|
+
'current_Loss_Amount'?: number;
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
* @type {number}
|
|
230
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
231
|
+
*/
|
|
232
|
+
'accumulated_Loss_Amount'?: number;
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* @type {number}
|
|
236
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
237
|
+
*/
|
|
238
|
+
'over_Spec_Amount'?: number;
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* @type {number}
|
|
242
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
243
|
+
*/
|
|
244
|
+
'include_In_Spec_Calc'?: number;
|
|
245
|
+
/**
|
|
246
|
+
*
|
|
247
|
+
* @type {number}
|
|
248
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
249
|
+
*/
|
|
250
|
+
'partial_Over_Spec'?: number;
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
* @type {number}
|
|
254
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
255
|
+
*/
|
|
256
|
+
'over_Reporting_Limit'?: number;
|
|
257
|
+
/**
|
|
258
|
+
*
|
|
259
|
+
* @type {string}
|
|
260
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
261
|
+
*/
|
|
262
|
+
'received_Date'?: string | null;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* @type {string}
|
|
266
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
267
|
+
*/
|
|
268
|
+
'processed_Date'?: string | null;
|
|
269
|
+
/**
|
|
270
|
+
*
|
|
271
|
+
* @type {string}
|
|
272
|
+
* @memberof VBAFundingAccountClaimInfo
|
|
273
|
+
*/
|
|
274
|
+
'claim_Type'?: string | null;
|
|
275
|
+
}
|
|
276
|
+
|
|
@@ -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 { VBAProblemDetails } from './vbaproblem-details';
|
|
18
|
+
import { VBAReinsContractTransactionSummary } from './vbareins-contract-transaction-summary';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAReinsContractTransactionSummaryListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAReinsContractTransactionSummaryListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<VBAReinsContractTransactionSummary>}
|
|
29
|
+
* @memberof VBAReinsContractTransactionSummaryListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<VBAReinsContractTransactionSummary> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBAReinsContractTransactionSummaryListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBAReinsContractTransactionSummaryListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|