@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230403.1 → 1.20230506.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 +20 -1
- package/api/capitation-plan-rates-api.ts +22 -13
- package/api/commission-adjustments-api.ts +59 -107
- package/api/commission-rate-subscribers-api.ts +126 -0
- package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
- package/api/context4-health-cost-containment-options-api.ts +17 -8
- package/api/groups-api.ts +97 -0
- package/api/invoice-status-api.ts +155 -0
- package/api/invoice-types-api.ts +155 -0
- package/api/members-api.ts +323 -0
- package/api/plan-relationship-age-restrictions-api.ts +63 -148
- package/api/premium-invoice-subscribers-api.ts +123 -0
- package/api/process-logging-api.ts +105 -0
- package/api/security-area-user-groups-api.ts +100 -0
- package/api/security-area-users-api.ts +98 -0
- package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
- package/api/ucnetwork-api.ts +710 -0
- package/api.ts +3 -1
- package/models/auth-adjustment.ts +2 -2
- package/models/billing-cycle.ts +25 -1
- package/models/call-tracking.ts +25 -1
- package/models/check-batch.ts +27 -3
- package/models/commission-adjustment.ts +21 -15
- package/models/commission-rate.ts +90 -36
- package/models/company-data.ts +12 -0
- package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
- package/models/enrollment-pcpauto-assign-member.ts +96 -0
- package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
- package/models/enrollment-pcpauto-assign-provider.ts +90 -0
- package/models/enrollment-pcpauto-assign.ts +3 -3
- package/models/index.ts +17 -0
- package/models/payee.ts +29 -5
- package/models/plan-pre-ex.ts +54 -0
- package/models/plans.ts +6 -0
- package/models/prem-invoice.ts +27 -21
- package/models/prem-rate-type.ts +6 -0
- package/models/prem-rate.ts +6 -0
- package/models/state-interest.ts +72 -0
- package/models/state.ts +35 -5
- package/models/string-list-vbaresponse.ts +44 -0
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/sub-payment-method.ts +16 -10
- package/models/subscriber-forfeiture-status.ts +25 -1
- package/models/subscribers.ts +6 -0
- package/models/ucnetwork-list-vbaresponse.ts +45 -0
- package/models/ucnetwork-vbaresponse.ts +45 -0
- package/models/ucnetwork.ts +90 -0
- package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
- package/models/vbacommission-rate-subscriber.ts +48 -0
- package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
- package/models/vbagroup-enrollment-summary.ts +48 -0
- package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
- package/models/vbamembers-disability-tax-summary.ts +276 -0
- package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
- package/models/vbaprem-invoice-subscriber-history.ts +108 -0
- package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
- package/package.json +1 -1
- package/api/subscriber-plan-forfeitures-api.ts +0 -731
package/models/prem-rate.ts
CHANGED
|
@@ -356,6 +356,12 @@ export interface PremRate {
|
|
|
356
356
|
* @memberof PremRate
|
|
357
357
|
*/
|
|
358
358
|
'parent_PremRate_Key'?: number | null;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {string}
|
|
362
|
+
* @memberof PremRate
|
|
363
|
+
*/
|
|
364
|
+
'payment_Method'?: string | null;
|
|
359
365
|
/**
|
|
360
366
|
* Unique identifier for the Plan
|
|
361
367
|
* @type {string}
|
package/models/state-interest.ts
CHANGED
|
@@ -26,6 +26,78 @@ export interface StateInterest {
|
|
|
26
26
|
* @memberof StateInterest
|
|
27
27
|
*/
|
|
28
28
|
'stateInterest_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof StateInterest
|
|
33
|
+
*/
|
|
34
|
+
'acH_Interest_Pct'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof StateInterest
|
|
39
|
+
*/
|
|
40
|
+
'acH_No_Interest_Within'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* 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.
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof StateInterest
|
|
45
|
+
*/
|
|
46
|
+
'calc_Interest_ACH_Business_Days': boolean;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof StateInterest
|
|
51
|
+
*/
|
|
52
|
+
'calc_Interest_ACH_Prompt_Pay_Freq'?: number | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof StateInterest
|
|
57
|
+
*/
|
|
58
|
+
'calc_Interest_ACH_Prompt_Pay_Freq_Thru'?: number | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof StateInterest
|
|
63
|
+
*/
|
|
64
|
+
'calc_Interest_ACH_Prompt_Pay_Type'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* 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
|
+
* @type {boolean}
|
|
68
|
+
* @memberof StateInterest
|
|
69
|
+
*/
|
|
70
|
+
'calc_Interest_Business_Days': boolean;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof StateInterest
|
|
75
|
+
*/
|
|
76
|
+
'calc_Interest_Prompt_Pay_Freq'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof StateInterest
|
|
81
|
+
*/
|
|
82
|
+
'calc_Interest_Prompt_Pay_Freq_Thru'?: number | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof StateInterest
|
|
87
|
+
*/
|
|
88
|
+
'calc_Interest_Prompt_Pay_Type'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
* 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.
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof StateInterest
|
|
93
|
+
*/
|
|
94
|
+
'compound_ACH_Interest': boolean;
|
|
95
|
+
/**
|
|
96
|
+
* 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.
|
|
97
|
+
* @type {boolean}
|
|
98
|
+
* @memberof StateInterest
|
|
99
|
+
*/
|
|
100
|
+
'compound_Interest': boolean;
|
|
29
101
|
/**
|
|
30
102
|
* Date the interest rate becomes effective
|
|
31
103
|
* @type {string}
|
package/models/state.ts
CHANGED
|
@@ -33,13 +33,13 @@ export interface State {
|
|
|
33
33
|
*/
|
|
34
34
|
'all_States'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
* Flag indicating if state tax should be applied to calculations
|
|
36
|
+
* Flag indicating if state tax should be applied to calculations 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 State
|
|
39
39
|
*/
|
|
40
40
|
'apply_State_Tax': boolean;
|
|
41
41
|
/**
|
|
42
|
-
* Flag indicating if ACH/EDI prompt pay frequency is based on business days
|
|
42
|
+
* Flag indicating if ACH/EDI prompt pay frequency is based on business days 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.
|
|
43
43
|
* @type {boolean}
|
|
44
44
|
* @memberof State
|
|
45
45
|
*/
|
|
@@ -57,7 +57,7 @@ export interface State {
|
|
|
57
57
|
*/
|
|
58
58
|
'calc_Interest_ACH_Prompt_Pay_Type'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
* Flag indicating if manual prompt pay frequency is based on business days
|
|
60
|
+
* Flag indicating if manual prompt pay frequency is based on business days 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.
|
|
61
61
|
* @type {boolean}
|
|
62
62
|
* @memberof State
|
|
63
63
|
*/
|
|
@@ -75,11 +75,23 @@ export interface State {
|
|
|
75
75
|
*/
|
|
76
76
|
'calc_Interest_Prompt_Pay_Type'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
* Amount of the default percentage election that should be applied to calculations
|
|
78
|
+
* Amount of the default percentage election that should be applied to calculations 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
79
|
* @type {number}
|
|
80
80
|
* @memberof State
|
|
81
81
|
*/
|
|
82
82
|
'default_Percentage_Election': number;
|
|
83
|
+
/**
|
|
84
|
+
* Date record was first added to the system
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof State
|
|
87
|
+
*/
|
|
88
|
+
'entry_Date'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* User that first added the record to the system
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof State
|
|
93
|
+
*/
|
|
94
|
+
'entry_User'?: string | null;
|
|
83
95
|
/**
|
|
84
96
|
* Full name of the state
|
|
85
97
|
* @type {string}
|
|
@@ -87,10 +99,28 @@ export interface State {
|
|
|
87
99
|
*/
|
|
88
100
|
'state_Name'?: string | null;
|
|
89
101
|
/**
|
|
90
|
-
*
|
|
102
|
+
* Date the record was last updated in the system
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof State
|
|
105
|
+
*/
|
|
106
|
+
'update_Date'?: string;
|
|
107
|
+
/**
|
|
108
|
+
* User that last updated the record in the system
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof State
|
|
111
|
+
*/
|
|
112
|
+
'update_User'?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
* Flag indicating if the default percentage election should be applied to calculations 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.
|
|
91
115
|
* @type {boolean}
|
|
92
116
|
* @memberof State
|
|
93
117
|
*/
|
|
94
118
|
'use_Percentage_Election': boolean;
|
|
119
|
+
/**
|
|
120
|
+
* 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.
|
|
121
|
+
* @type {boolean}
|
|
122
|
+
* @memberof State
|
|
123
|
+
*/
|
|
124
|
+
'use_StateInterest_Settings': boolean;
|
|
95
125
|
}
|
|
96
126
|
|
|
@@ -0,0 +1,44 @@
|
|
|
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
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface StringListVBAResponse
|
|
23
|
+
*/
|
|
24
|
+
export interface StringListVBAResponse {
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<string>}
|
|
28
|
+
* @memberof StringListVBAResponse
|
|
29
|
+
*/
|
|
30
|
+
'data'?: Array<string> | null;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {VBAProblemDetails}
|
|
34
|
+
* @memberof StringListVBAResponse
|
|
35
|
+
*/
|
|
36
|
+
'error'?: VBAProblemDetails;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Debug}
|
|
40
|
+
* @memberof StringListVBAResponse
|
|
41
|
+
*/
|
|
42
|
+
'debug'?: Debug;
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -152,5 +152,11 @@ export interface SubEnrollmentPlan {
|
|
|
152
152
|
* @memberof SubEnrollmentPlan
|
|
153
153
|
*/
|
|
154
154
|
'use_Volume_Scale': boolean;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {number}
|
|
158
|
+
* @memberof SubEnrollmentPlan
|
|
159
|
+
*/
|
|
160
|
+
'writing_CommissionAgencyRep_Key'?: number | null;
|
|
155
161
|
}
|
|
156
162
|
|
|
@@ -21,67 +21,73 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface SubPaymentMethod {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* The primary key and identifier of the record 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 SubPaymentMethod
|
|
27
27
|
*/
|
|
28
28
|
'sub_Payment_Method_Key': number;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof SubPaymentMethod
|
|
33
|
+
*/
|
|
34
|
+
'acH_Pull_Day'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
* References the benefit code associated with the payment method
|
|
31
37
|
* @type {string}
|
|
32
38
|
* @memberof SubPaymentMethod
|
|
33
39
|
*/
|
|
34
40
|
'benefit_Code'?: string | null;
|
|
35
41
|
/**
|
|
36
|
-
*
|
|
42
|
+
* The effective date of the payment method 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.
|
|
37
43
|
* @type {string}
|
|
38
44
|
* @memberof SubPaymentMethod
|
|
39
45
|
*/
|
|
40
46
|
'effective_Date': string;
|
|
41
47
|
/**
|
|
42
|
-
*
|
|
48
|
+
* Date record was first added to the system
|
|
43
49
|
* @type {string}
|
|
44
50
|
* @memberof SubPaymentMethod
|
|
45
51
|
*/
|
|
46
52
|
'entry_Date'?: string;
|
|
47
53
|
/**
|
|
48
|
-
*
|
|
54
|
+
* User that first added the record to the system
|
|
49
55
|
* @type {string}
|
|
50
56
|
* @memberof SubPaymentMethod
|
|
51
57
|
*/
|
|
52
58
|
'entry_User'?: string | null;
|
|
53
59
|
/**
|
|
54
|
-
*
|
|
60
|
+
* The payment method associated with the subscriber, plan, benefit code combination
|
|
55
61
|
* @type {string}
|
|
56
62
|
* @memberof SubPaymentMethod
|
|
57
63
|
*/
|
|
58
64
|
'payment_Method': string;
|
|
59
65
|
/**
|
|
60
|
-
*
|
|
66
|
+
* References the plan associated with the payment method
|
|
61
67
|
* @type {string}
|
|
62
68
|
* @memberof SubPaymentMethod
|
|
63
69
|
*/
|
|
64
70
|
'plan_ID'?: string | null;
|
|
65
71
|
/**
|
|
66
|
-
*
|
|
72
|
+
* References the subscriber associated with the payment method
|
|
67
73
|
* @type {string}
|
|
68
74
|
* @memberof SubPaymentMethod
|
|
69
75
|
*/
|
|
70
76
|
'subscriber_ID': string;
|
|
71
77
|
/**
|
|
72
|
-
*
|
|
78
|
+
* The termination date of the payment method
|
|
73
79
|
* @type {string}
|
|
74
80
|
* @memberof SubPaymentMethod
|
|
75
81
|
*/
|
|
76
82
|
'term_Date'?: string | null;
|
|
77
83
|
/**
|
|
78
|
-
*
|
|
84
|
+
* Date the record was last updated in the system
|
|
79
85
|
* @type {string}
|
|
80
86
|
* @memberof SubPaymentMethod
|
|
81
87
|
*/
|
|
82
88
|
'update_Date'?: string;
|
|
83
89
|
/**
|
|
84
|
-
*
|
|
90
|
+
* User that last updated the record in the system
|
|
85
91
|
* @type {string}
|
|
86
92
|
* @memberof SubPaymentMethod
|
|
87
93
|
*/
|
|
@@ -51,16 +51,40 @@ export interface SubscriberForfeitureStatus {
|
|
|
51
51
|
*/
|
|
52
52
|
'forfeiture_Status': string;
|
|
53
53
|
/**
|
|
54
|
-
* Date when the forfeiture becomes/became effective.
|
|
54
|
+
* Date when the forfeiture becomes/became effective. 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 SubscriberForfeitureStatus
|
|
57
57
|
*/
|
|
58
58
|
'effective_Date': string;
|
|
59
|
+
/**
|
|
60
|
+
* Date when the record was first added to the system.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof SubscriberForfeitureStatus
|
|
63
|
+
*/
|
|
64
|
+
'entry_Date'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* User that first added the record to the system.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof SubscriberForfeitureStatus
|
|
69
|
+
*/
|
|
70
|
+
'entry_User'?: string | null;
|
|
59
71
|
/**
|
|
60
72
|
* Date when the forfeiture expires/expired.
|
|
61
73
|
* @type {string}
|
|
62
74
|
* @memberof SubscriberForfeitureStatus
|
|
63
75
|
*/
|
|
64
76
|
'term_Date'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Date when the record was last updated in the system.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof SubscriberForfeitureStatus
|
|
81
|
+
*/
|
|
82
|
+
'update_Date'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* User that last updated the record in the system.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof SubscriberForfeitureStatus
|
|
87
|
+
*/
|
|
88
|
+
'update_User'?: string | null;
|
|
65
89
|
}
|
|
66
90
|
|
package/models/subscribers.ts
CHANGED
|
@@ -116,6 +116,12 @@ export interface Subscribers {
|
|
|
116
116
|
* @memberof Subscribers
|
|
117
117
|
*/
|
|
118
118
|
'home_Phone'?: string | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof Subscribers
|
|
123
|
+
*/
|
|
124
|
+
'issue_State'?: string | null;
|
|
119
125
|
/**
|
|
120
126
|
* Last name of the Subscriber.
|
|
121
127
|
* @type {string}
|
|
@@ -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 { UCNetwork } from './ucnetwork';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface UCNetworkListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface UCNetworkListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<UCNetwork>}
|
|
29
|
+
* @memberof UCNetworkListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<UCNetwork> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof UCNetworkListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof UCNetworkListVBAResponse
|
|
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 { UCNetwork } from './ucnetwork';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface UCNetworkVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface UCNetworkVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {UCNetwork}
|
|
29
|
+
* @memberof UCNetworkVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: UCNetwork;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof UCNetworkVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof UCNetworkVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
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 UCNetwork
|
|
21
|
+
*/
|
|
22
|
+
export interface UCNetwork {
|
|
23
|
+
/**
|
|
24
|
+
* Group ID that the Usual and Customary Network applies to
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UCNetwork
|
|
27
|
+
*/
|
|
28
|
+
'group_ID': string;
|
|
29
|
+
/**
|
|
30
|
+
* Division ID that the Usual and Customary Network applies to
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UCNetwork
|
|
33
|
+
*/
|
|
34
|
+
'division_ID': string;
|
|
35
|
+
/**
|
|
36
|
+
* Plan ID that the Usual and Customary Network applies to
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UCNetwork
|
|
39
|
+
*/
|
|
40
|
+
'plan_ID': string;
|
|
41
|
+
/**
|
|
42
|
+
* State that the Usual and Customary Network applies to
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UCNetwork
|
|
45
|
+
*/
|
|
46
|
+
'state': string;
|
|
47
|
+
/**
|
|
48
|
+
* Fee Schedule that is used for the Usual and Customary Network
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UCNetwork
|
|
51
|
+
*/
|
|
52
|
+
'fee_Sched': string;
|
|
53
|
+
/**
|
|
54
|
+
* Date the Usual and Customary Network terminates
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof UCNetwork
|
|
57
|
+
*/
|
|
58
|
+
'end_Date'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Date record was first added to the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof UCNetwork
|
|
63
|
+
*/
|
|
64
|
+
'entry_Date'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* User that first added the record to the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof UCNetwork
|
|
69
|
+
*/
|
|
70
|
+
'entry_User'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Date that the Usual and Customary Network becomes effective
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof UCNetwork
|
|
75
|
+
*/
|
|
76
|
+
'start_Date'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Date the record was last updated in the system
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof UCNetwork
|
|
81
|
+
*/
|
|
82
|
+
'update_Date'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* User that last updated the record in the system
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof UCNetwork
|
|
87
|
+
*/
|
|
88
|
+
'update_User'?: string | null;
|
|
89
|
+
}
|
|
90
|
+
|
|
@@ -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 { VBACommissionRateSubscriber } from './vbacommission-rate-subscriber';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBACommissionRateSubscriberListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBACommissionRateSubscriberListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<VBACommissionRateSubscriber>}
|
|
29
|
+
* @memberof VBACommissionRateSubscriberListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<VBACommissionRateSubscriber> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBACommissionRateSubscriberListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBACommissionRateSubscriberListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 VBACommissionRateSubscriber
|
|
21
|
+
*/
|
|
22
|
+
export interface VBACommissionRateSubscriber {
|
|
23
|
+
/**
|
|
24
|
+
* The Commission Rate Key asigned to this Subscriber
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof VBACommissionRateSubscriber
|
|
27
|
+
*/
|
|
28
|
+
'commissionRate_Key'?: number | null;
|
|
29
|
+
/**
|
|
30
|
+
* The subscriber\'s unique id
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBACommissionRateSubscriber
|
|
33
|
+
*/
|
|
34
|
+
'subscriber_ID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* First name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBACommissionRateSubscriber
|
|
39
|
+
*/
|
|
40
|
+
'first_Name'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Last name
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof VBACommissionRateSubscriber
|
|
45
|
+
*/
|
|
46
|
+
'last_Name'?: string | null;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -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 { VBAGroupEnrollmentSummary } from './vbagroup-enrollment-summary';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAGroupEnrollmentSummaryVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAGroupEnrollmentSummaryVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {VBAGroupEnrollmentSummary}
|
|
29
|
+
* @memberof VBAGroupEnrollmentSummaryVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: VBAGroupEnrollmentSummary;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBAGroupEnrollmentSummaryVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBAGroupEnrollmentSummaryVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|