@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230403.1 → 1.20230512.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.
Files changed (61) hide show
  1. package/.openapi-generator/FILES +20 -1
  2. package/api/capitation-plan-rates-api.ts +22 -13
  3. package/api/claim-adjudication-api.ts +404 -0
  4. package/api/commission-adjustments-api.ts +59 -107
  5. package/api/commission-rate-subscribers-api.ts +126 -0
  6. package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
  7. package/api/context4-health-cost-containment-options-api.ts +17 -8
  8. package/api/groups-api.ts +97 -0
  9. package/api/invoice-status-api.ts +155 -0
  10. package/api/invoice-types-api.ts +155 -0
  11. package/api/members-api.ts +323 -0
  12. package/api/plan-benefit-clusters-api.ts +17 -8
  13. package/api/plan-relationship-age-restrictions-api.ts +63 -148
  14. package/api/premium-invoice-subscribers-api.ts +123 -0
  15. package/api/process-logging-api.ts +105 -0
  16. package/api/security-area-user-groups-api.ts +100 -0
  17. package/api/security-area-users-api.ts +98 -0
  18. package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
  19. package/api/ucnetwork-api.ts +710 -0
  20. package/api.ts +3 -1
  21. package/models/auth-adjustment.ts +2 -2
  22. package/models/billing-cycle.ts +25 -1
  23. package/models/call-tracking.ts +25 -1
  24. package/models/check-batch.ts +27 -3
  25. package/models/commission-adjustment.ts +21 -15
  26. package/models/commission-rate.ts +90 -36
  27. package/models/company-data.ts +12 -0
  28. package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
  29. package/models/enrollment-pcpauto-assign-member.ts +96 -0
  30. package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
  31. package/models/enrollment-pcpauto-assign-provider.ts +90 -0
  32. package/models/enrollment-pcpauto-assign.ts +3 -3
  33. package/models/funding-request.ts +26 -2
  34. package/models/index.ts +17 -0
  35. package/models/payee.ts +29 -5
  36. package/models/plan-pre-ex.ts +54 -0
  37. package/models/plans.ts +6 -0
  38. package/models/prem-invoice.ts +27 -21
  39. package/models/prem-rate-type.ts +6 -0
  40. package/models/prem-rate.ts +6 -0
  41. package/models/state-interest.ts +72 -0
  42. package/models/state.ts +35 -5
  43. package/models/string-list-vbaresponse.ts +44 -0
  44. package/models/sub-enrollment-plan.ts +6 -0
  45. package/models/sub-payment-method.ts +16 -10
  46. package/models/subscriber-forfeiture-status.ts +25 -1
  47. package/models/subscribers.ts +6 -0
  48. package/models/ucnetwork-list-vbaresponse.ts +45 -0
  49. package/models/ucnetwork-vbaresponse.ts +45 -0
  50. package/models/ucnetwork.ts +90 -0
  51. package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
  52. package/models/vbacommission-rate-subscriber.ts +48 -0
  53. package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
  54. package/models/vbagroup-enrollment-summary.ts +48 -0
  55. package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
  56. package/models/vbamembers-disability-tax-summary.ts +276 -0
  57. package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
  58. package/models/vbaprem-invoice-subscriber-history.ts +108 -0
  59. package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
  60. package/package.json +1 -1
  61. package/api/subscriber-plan-forfeitures-api.ts +0 -731
@@ -21,133 +21,139 @@
21
21
  */
22
22
  export interface PremInvoice {
23
23
  /**
24
- *
24
+ * Unique identifier for the Invoice 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 PremInvoice
27
27
  */
28
28
  'invoice_Key': number;
29
29
  /**
30
- *
30
+ * Address of the group or individual the Invoice is for
31
31
  * @type {string}
32
32
  * @memberof PremInvoice
33
33
  */
34
34
  'bill_Address'?: string | null;
35
35
  /**
36
- *
36
+ * Second line for the Address of the group or individual the Invoice is for
37
37
  * @type {string}
38
38
  * @memberof PremInvoice
39
39
  */
40
40
  'bill_Address2'?: string | null;
41
41
  /**
42
- *
42
+ * City of the group or individual the Invoice is for
43
43
  * @type {string}
44
44
  * @memberof PremInvoice
45
45
  */
46
46
  'bill_City'?: string | null;
47
47
  /**
48
- *
48
+ * Name of the group or individual the Invoice is for
49
49
  * @type {string}
50
50
  * @memberof PremInvoice
51
51
  */
52
52
  'bill_Name'?: string | null;
53
53
  /**
54
- *
54
+ * State of the group or individual the Invoice is for
55
55
  * @type {string}
56
56
  * @memberof PremInvoice
57
57
  */
58
58
  'bill_State'?: string | null;
59
59
  /**
60
- *
60
+ * Zip Code of the group or individual the Invoice is for
61
61
  * @type {string}
62
62
  * @memberof PremInvoice
63
63
  */
64
64
  'bill_Zip_Code'?: string | null;
65
65
  /**
66
- *
66
+ * First day of the Invoice period
67
67
  * @type {string}
68
68
  * @memberof PremInvoice
69
69
  */
70
70
  'billing_From'?: string | null;
71
71
  /**
72
- *
72
+ * Last day of the Invoice period
73
73
  * @type {string}
74
74
  * @memberof PremInvoice
75
75
  */
76
76
  'billing_Thru'?: string | null;
77
77
  /**
78
- *
78
+ * Due Date of the Invoice
79
79
  * @type {string}
80
80
  * @memberof PremInvoice
81
81
  */
82
82
  'due_Date'?: string | null;
83
83
  /**
84
- *
84
+ * Date record was first added to the system
85
85
  * @type {string}
86
86
  * @memberof PremInvoice
87
87
  */
88
88
  'entry_Date'?: string;
89
89
  /**
90
- *
90
+ * User that first added the record to the system
91
91
  * @type {string}
92
92
  * @memberof PremInvoice
93
93
  */
94
94
  'entry_User'?: string | null;
95
95
  /**
96
- *
96
+ * Finalized invoices cannot be changed 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
97
  * @type {boolean}
98
98
  * @memberof PremInvoice
99
99
  */
100
100
  'finalized': boolean;
101
101
  /**
102
- *
102
+ * Date the Invoice was Finalized
103
103
  * @type {string}
104
104
  * @memberof PremInvoice
105
105
  */
106
106
  'finalized_Date'?: string | null;
107
107
  /**
108
- *
108
+ * User that Finalized the Invoice
109
109
  * @type {string}
110
110
  * @memberof PremInvoice
111
111
  */
112
112
  'finalized_User'?: string | null;
113
113
  /**
114
- *
114
+ * Date of the Invoice
115
115
  * @type {string}
116
116
  * @memberof PremInvoice
117
117
  */
118
118
  'invoice_Date'?: string | null;
119
119
  /**
120
- *
120
+ * Level of the Invoice: Group, Division, or Subscriber
121
121
  * @type {string}
122
122
  * @memberof PremInvoice
123
123
  */
124
124
  'invoice_Level'?: string | null;
125
125
  /**
126
- *
126
+ * Number assigned to this Invoice
127
127
  * @type {string}
128
128
  * @memberof PremInvoice
129
129
  */
130
130
  'invoice_Number'?: string | null;
131
131
  /**
132
- *
132
+ * Status of the Invoice: Open or Closed
133
133
  * @type {string}
134
134
  * @memberof PremInvoice
135
135
  */
136
136
  'invoice_Status'?: string | null;
137
137
  /**
138
- *
138
+ * Identifies the Invoice that this Invoice was created from
139
139
  * @type {number}
140
140
  * @memberof PremInvoice
141
141
  */
142
142
  'original_Invoice_Key'?: number | null;
143
143
  /**
144
144
  *
145
+ * @type {number}
146
+ * @memberof PremInvoice
147
+ */
148
+ 'pay_Period'?: number | null;
149
+ /**
150
+ * Date the record was last updated in the system
145
151
  * @type {string}
146
152
  * @memberof PremInvoice
147
153
  */
148
154
  'update_Date'?: string;
149
155
  /**
150
- *
156
+ * User that last updated the record in the system
151
157
  * @type {string}
152
158
  * @memberof PremInvoice
153
159
  */
@@ -26,6 +26,12 @@ export interface PremRateType {
26
26
  * @memberof PremRateType
27
27
  */
28
28
  'rate_Type': string;
29
+ /**
30
+ * 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
+ * @type {boolean}
32
+ * @memberof PremRateType
33
+ */
34
+ 'addOn_Type': boolean;
29
35
  /**
30
36
  * Flag that determines if the Rate Type includes Adjustments 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
37
  * @type {boolean}
@@ -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}
@@ -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
- * Flag indicating if the default percentage election should be applied to calculations
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
 
@@ -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
+