@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230519.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 +27 -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/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 +20 -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/package.json +1 -1
|
@@ -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 { ErrorSeverity } from './error-severity';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorSeverityVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorSeverityVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ErrorSeverity}
|
|
29
|
+
* @memberof ErrorSeverityVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ErrorSeverity;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorSeverityVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorSeverityVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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 ErrorSeverity
|
|
21
|
+
*/
|
|
22
|
+
export interface ErrorSeverity {
|
|
23
|
+
/**
|
|
24
|
+
* Name for the error severity. 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
|
+
* @type {number}
|
|
26
|
+
* @memberof ErrorSeverity
|
|
27
|
+
*/
|
|
28
|
+
'error_Severity': number;
|
|
29
|
+
/**
|
|
30
|
+
* Description of the error severity.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ErrorSeverity
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ErrorSeverity
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ErrorSeverity
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ErrorSeverity
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ErrorSeverity
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -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 { ErrorType } from './error-type';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorTypeListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorTypeListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ErrorType>}
|
|
29
|
+
* @memberof ErrorTypeListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ErrorType> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorTypeListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorTypeListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 { ErrorType } from './error-type';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorTypeVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorTypeVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ErrorType}
|
|
29
|
+
* @memberof ErrorTypeVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ErrorType;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorTypeVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorTypeVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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 ErrorType
|
|
21
|
+
*/
|
|
22
|
+
export interface ErrorType {
|
|
23
|
+
/**
|
|
24
|
+
* Name for the error type.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ErrorType
|
|
27
|
+
*/
|
|
28
|
+
'error_Type': string;
|
|
29
|
+
/**
|
|
30
|
+
* Description of the error type.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ErrorType
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ErrorType
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ErrorType
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ErrorType
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ErrorType
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -21,11 +21,23 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface FeeSchedAnesthesia {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier of this table.
|
|
24
|
+
* Unique identifier of this 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 FeeSchedAnesthesia
|
|
27
27
|
*/
|
|
28
28
|
'feeSchedAnesthesia_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* User that first added the record to the system.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof FeeSchedAnesthesia
|
|
33
|
+
*/
|
|
34
|
+
'entry_Date'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Date when the record was first added to the system.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof FeeSchedAnesthesia
|
|
39
|
+
*/
|
|
40
|
+
'entry_User'?: string | null;
|
|
29
41
|
/**
|
|
30
42
|
* The fee schedule this anesthesia is associated with.
|
|
31
43
|
* @type {string}
|
|
@@ -50,5 +62,17 @@ export interface FeeSchedAnesthesia {
|
|
|
50
62
|
* @memberof FeeSchedAnesthesia
|
|
51
63
|
*/
|
|
52
64
|
'type': string;
|
|
65
|
+
/**
|
|
66
|
+
* User that last updated the record in the system.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof FeeSchedAnesthesia
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Date when the record was last updated in the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof FeeSchedAnesthesia
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
53
77
|
}
|
|
54
78
|
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface FeeSchedDetail {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier for each Detail record on this Fee Schedule.
|
|
24
|
+
* Unique identifier for each Detail record on this Fee Schedule. 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 FeeSchedDetail
|
|
27
27
|
*/
|
|
28
28
|
'feeSchedDetail_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
* This option allows the ‘Fee Schedule’ to price above the billed amount.
|
|
30
|
+
* This option allows the ‘Fee Schedule’ to price above the billed amount. Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
31
31
|
* @type {boolean}
|
|
32
32
|
* @memberof FeeSchedDetail
|
|
33
33
|
*/
|
|
34
34
|
'allowed_Over_Billed': boolean;
|
|
35
35
|
/**
|
|
36
|
-
* This field is currently informational only.
|
|
36
|
+
* This field is currently informational only. Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
37
37
|
* @type {boolean}
|
|
38
38
|
* @memberof FeeSchedDetail
|
|
39
39
|
*/
|
|
@@ -69,11 +69,23 @@ export interface FeeSchedDetail {
|
|
|
69
69
|
*/
|
|
70
70
|
'drug_Code'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
* Date when the schedule should begin applying to claims. This date will be compared to the date of service on the claim.
|
|
72
|
+
* Date when the schedule should begin 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.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof FeeSchedDetail
|
|
75
75
|
*/
|
|
76
76
|
'effective_Date': string;
|
|
77
|
+
/**
|
|
78
|
+
* User that first added the record to the system.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof FeeSchedDetail
|
|
81
|
+
*/
|
|
82
|
+
'entry_Date'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Date when the record was first added to the system.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof FeeSchedDetail
|
|
87
|
+
*/
|
|
88
|
+
'entry_User'?: string | null;
|
|
77
89
|
/**
|
|
78
90
|
* Applies the provided Ex Code to any claim that has been repriced by this ‘Fee Schedule Fee’.
|
|
79
91
|
* @type {string}
|
|
@@ -218,5 +230,17 @@ export interface FeeSchedDetail {
|
|
|
218
230
|
* @memberof FeeSchedDetail
|
|
219
231
|
*/
|
|
220
232
|
'uC_Percent'?: number | null;
|
|
233
|
+
/**
|
|
234
|
+
* User that last updated the record in the system.
|
|
235
|
+
* @type {string}
|
|
236
|
+
* @memberof FeeSchedDetail
|
|
237
|
+
*/
|
|
238
|
+
'update_Date'?: string;
|
|
239
|
+
/**
|
|
240
|
+
* Date when the record was last updated in the system.
|
|
241
|
+
* @type {string}
|
|
242
|
+
* @memberof FeeSchedDetail
|
|
243
|
+
*/
|
|
244
|
+
'update_User'?: string | null;
|
|
221
245
|
}
|
|
222
246
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface FeeSchedModifierDiscount {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier assigned to the modifier discount.
|
|
24
|
+
* Unique identifier assigned to the modifier 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 FeeSchedModifierDiscount
|
|
27
27
|
*/
|
|
@@ -33,17 +33,29 @@ export interface FeeSchedModifierDiscount {
|
|
|
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 FeeSchedModifierDiscount
|
|
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 FeeSchedModifierDiscount
|
|
45
45
|
*/
|
|
46
46
|
'effective_Date': string;
|
|
47
|
+
/**
|
|
48
|
+
* User that first added the record to the system.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof FeeSchedModifierDiscount
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Date when the record was first added to the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof FeeSchedModifierDiscount
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
47
59
|
/**
|
|
48
60
|
* Unique name given to the Fee Scheudle.
|
|
49
61
|
* @type {string}
|
|
@@ -74,5 +86,17 @@ export interface FeeSchedModifierDiscount {
|
|
|
74
86
|
* @memberof FeeSchedModifierDiscount
|
|
75
87
|
*/
|
|
76
88
|
'modifier4'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
* User that last updated the record in the system.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof FeeSchedModifierDiscount
|
|
93
|
+
*/
|
|
94
|
+
'update_Date'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* Date when the record was last updated in the system.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof FeeSchedModifierDiscount
|
|
99
|
+
*/
|
|
100
|
+
'update_User'?: string | null;
|
|
77
101
|
}
|
|
78
102
|
|
|
@@ -21,11 +21,23 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface FeeSchedModifierExclude {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier assigned to the fee schedule modifier.
|
|
24
|
+
* Unique identifier assigned to the fee schedule modifier. 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 FeeSchedModifierExclude
|
|
27
27
|
*/
|
|
28
28
|
'feeSchedModifierExclude_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* User that first added the record to the system.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof FeeSchedModifierExclude
|
|
33
|
+
*/
|
|
34
|
+
'entry_Date'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Date when the record was first added to the system.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof FeeSchedModifierExclude
|
|
39
|
+
*/
|
|
40
|
+
'entry_User'?: string | null;
|
|
29
41
|
/**
|
|
30
42
|
* Unique name given to the Fee Scheudle.
|
|
31
43
|
* @type {string}
|
|
@@ -38,5 +50,17 @@ export interface FeeSchedModifierExclude {
|
|
|
38
50
|
* @memberof FeeSchedModifierExclude
|
|
39
51
|
*/
|
|
40
52
|
'modifier': string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof FeeSchedModifierExclude
|
|
57
|
+
*/
|
|
58
|
+
'update_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Date when the record was last updated in the system.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof FeeSchedModifierExclude
|
|
63
|
+
*/
|
|
64
|
+
'update_User'?: string | null;
|
|
41
65
|
}
|
|
42
66
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface FeeSchedProcedureGroupAdjust {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier assigned to the procedure group adjustment.
|
|
24
|
+
* Unique identifier assigned to the procedure group adjustment. 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 FeeSchedProcedureGroupAdjust
|
|
27
27
|
*/
|
|
@@ -45,17 +45,29 @@ export interface FeeSchedProcedureGroupAdjust {
|
|
|
45
45
|
*/
|
|
46
46
|
'adjust_Rule'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
* Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.)
|
|
48
|
+
* 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.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof FeeSchedProcedureGroupAdjust
|
|
51
51
|
*/
|
|
52
52
|
'adjust_Seq': number;
|
|
53
53
|
/**
|
|
54
|
-
* Date when the adjustment will begin/began applying to claims. This date will be compared to the date of service on the claim.
|
|
54
|
+
* Date when the adjustment 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.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof FeeSchedProcedureGroupAdjust
|
|
57
57
|
*/
|
|
58
58
|
'effective_Date': string;
|
|
59
|
+
/**
|
|
60
|
+
* User that first added the record to the system.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof FeeSchedProcedureGroupAdjust
|
|
63
|
+
*/
|
|
64
|
+
'entry_Date'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Date when the record was first added to the system.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof FeeSchedProcedureGroupAdjust
|
|
69
|
+
*/
|
|
70
|
+
'entry_User'?: string | null;
|
|
59
71
|
/**
|
|
60
72
|
* Unique name given to the Fee Scheudle.
|
|
61
73
|
* @type {string}
|
|
@@ -63,22 +75,34 @@ export interface FeeSchedProcedureGroupAdjust {
|
|
|
63
75
|
*/
|
|
64
76
|
'fee_Sched': string;
|
|
65
77
|
/**
|
|
66
|
-
* Identifies which procedure code field within the claim that adjudication should attempt to match.
|
|
78
|
+
* Identifies which procedure code field within the claim that adjudication should attempt to match. Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
67
79
|
* @type {boolean}
|
|
68
80
|
* @memberof FeeSchedProcedureGroupAdjust
|
|
69
81
|
*/
|
|
70
82
|
'procedure_Code1': boolean;
|
|
71
83
|
/**
|
|
72
|
-
* Identifies which procedure code field within the claim that adjudication should attempt to match.
|
|
84
|
+
* Identifies which procedure code field within the claim that adjudication should attempt to match. Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
73
85
|
* @type {boolean}
|
|
74
86
|
* @memberof FeeSchedProcedureGroupAdjust
|
|
75
87
|
*/
|
|
76
88
|
'procedure_Code2': boolean;
|
|
77
89
|
/**
|
|
78
|
-
* Identifies the procedure group to which the associated rule will be applied.
|
|
90
|
+
* Identifies the procedure group to which the associated rule will be applied. 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.
|
|
79
91
|
* @type {number}
|
|
80
92
|
* @memberof FeeSchedProcedureGroupAdjust
|
|
81
93
|
*/
|
|
82
94
|
'procedure_Group': number;
|
|
95
|
+
/**
|
|
96
|
+
* User that last updated the record in the system.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof FeeSchedProcedureGroupAdjust
|
|
99
|
+
*/
|
|
100
|
+
'update_Date'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Date when the record was last updated in the system.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof FeeSchedProcedureGroupAdjust
|
|
105
|
+
*/
|
|
106
|
+
'update_User'?: string | null;
|
|
83
107
|
}
|
|
84
108
|
|
|
@@ -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
|
|