@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 1.20230403.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 +19 -0
- package/api/adv-group-api.ts +17 -17
- package/api/chat-gptapi.ts +154 -0
- package/api/events-api.ts +87 -0
- package/api/groups-api.ts +17 -17
- package/api/prem-rate-types-api.ts +668 -0
- package/api/premium-invoice-payments-api.ts +124 -0
- package/api/premium-invoices-api.ts +336 -5
- package/api/premium-rate-distribution-types-api.ts +155 -0
- package/api/state-interest-api.ts +668 -0
- package/api/subscriber-plan-policies-api.ts +43 -91
- package/api/user-api.ts +394 -0
- package/api.ts +4 -0
- package/models/chat-message.ts +30 -0
- package/models/claim-batch-detail.ts +152 -140
- package/models/claim-batch.ts +1697 -479
- package/models/claim-detail.ts +137 -125
- package/models/claim-pre-batch-detail.ts +101 -95
- package/models/claim-pre-batch.ts +1703 -425
- package/models/claim.ts +1562 -338
- package/models/company-data.ts +433 -403
- package/models/cost-contain-zelis-ex-code.ts +12 -6
- package/models/enrollment-disenroll-group.ts +84 -0
- package/models/enrollment-disenroll.ts +28 -34
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +15 -0
- package/models/mem-enrollment-plan.ts +9 -9
- package/models/mem-enrollment-rider.ts +10 -10
- package/models/member-beneficiary.ts +3 -3
- package/models/member-language.ts +38 -2
- package/models/member-medicare-resp.ts +50 -26
- package/models/members.ts +1 -1
- package/models/network-procedure-cluster.ts +15 -9
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +58 -52
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
- package/models/prem-invoice-group-summary.ts +114 -0
- package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-payment-ext.ts +102 -0
- package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-slim.ts +42 -0
- package/models/prem-rate-type-list-vbaresponse.ts +45 -0
- package/models/prem-rate-type-vbaresponse.ts +45 -0
- package/models/prem-rate-type.ts +72 -0
- package/models/prem-rate.ts +91 -85
- package/models/state-interest-list-vbaresponse.ts +45 -0
- package/models/state-interest-vbaresponse.ts +45 -0
- package/models/state-interest.ts +84 -0
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/user-reset-password-request.ts +42 -0
- package/models/users.ts +8 -8
- package/package.json +1 -1
package/models/prem-rate.ts
CHANGED
|
@@ -21,511 +21,517 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface PremRate {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier for the PremRate 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 PremRate
|
|
27
27
|
*/
|
|
28
28
|
'premRate_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Address the additional invoice is sent to
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof PremRate
|
|
33
33
|
*/
|
|
34
34
|
'additional_Invoice_Address'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Frequency of the additional invoice
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PremRate
|
|
39
39
|
*/
|
|
40
40
|
'additional_Invoice_Frequency'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Allows split billing at this level
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PremRate
|
|
45
45
|
*/
|
|
46
46
|
'additional_Invoice_Level'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Level of the Address used to determine if the rate applies
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof PremRate
|
|
51
51
|
*/
|
|
52
52
|
'address_Type'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Adjustment Reason of the PremRate
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof PremRate
|
|
57
57
|
*/
|
|
58
58
|
'adjustment_Reason'?: number | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Flag used to determine if the rate applies to Adults 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 PremRate
|
|
63
63
|
*/
|
|
64
64
|
'adult': boolean;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Beginning Age range of the PremRate
|
|
67
67
|
* @type {number}
|
|
68
68
|
* @memberof PremRate
|
|
69
69
|
*/
|
|
70
70
|
'age_From'?: number | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Ending Age range of the PremRate
|
|
73
73
|
* @type {number}
|
|
74
74
|
* @memberof PremRate
|
|
75
75
|
*/
|
|
76
76
|
'age_Thru'?: number | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Detemines what date is used to calculate Age
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof PremRate
|
|
81
81
|
*/
|
|
82
82
|
'age_Type'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Detemines what Month is used if the Month Type is selected
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof PremRate
|
|
87
87
|
*/
|
|
88
88
|
'age_Type_Month'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Flag to determine if the rate applies to new Divisions 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
91
|
* @type {boolean}
|
|
92
92
|
* @memberof PremRate
|
|
93
93
|
*/
|
|
94
94
|
'assign_To_New_Division': boolean;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Flag to determine if the rate applies to new Groups 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 PremRate
|
|
99
99
|
*/
|
|
100
100
|
'assign_To_New_Group': boolean;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Flag to determine if the rate applies to new Members 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.
|
|
103
103
|
* @type {boolean}
|
|
104
104
|
* @memberof PremRate
|
|
105
105
|
*/
|
|
106
106
|
'assign_To_New_Member': boolean;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Flag that determines if the rate is automatically adjusted 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.
|
|
109
109
|
* @type {boolean}
|
|
110
110
|
* @memberof PremRate
|
|
111
111
|
*/
|
|
112
112
|
'auto_Adjust': boolean;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Reason applied to automatic adjustments
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof PremRate
|
|
117
117
|
*/
|
|
118
118
|
'auto_Adjust_Reason'?: number | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* This flag indicates prevention of the retro logic from creating backout adjustments for this rate 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
121
|
* @type {boolean}
|
|
122
122
|
* @memberof PremRate
|
|
123
123
|
*/
|
|
124
124
|
'avoid_Retro': boolean;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* Benefit Code of the PremRate
|
|
127
127
|
* @type {string}
|
|
128
128
|
* @memberof PremRate
|
|
129
129
|
*/
|
|
130
130
|
'benefit_Code'?: string | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Flag used to determine if the rate applies to Children 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.
|
|
133
133
|
* @type {boolean}
|
|
134
134
|
* @memberof PremRate
|
|
135
135
|
*/
|
|
136
136
|
'child': boolean;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* City of the Address used to determine if the rate applies
|
|
139
139
|
* @type {string}
|
|
140
140
|
* @memberof PremRate
|
|
141
141
|
*/
|
|
142
142
|
'city'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Class Code for the PremRate
|
|
145
145
|
* @type {string}
|
|
146
146
|
* @memberof PremRate
|
|
147
147
|
*/
|
|
148
148
|
'class_Code'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Country ID of the Address used to determine if the rate applies
|
|
151
151
|
* @type {string}
|
|
152
152
|
* @memberof PremRate
|
|
153
153
|
*/
|
|
154
154
|
'country_ID'?: string | null;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* Country Code of the Address used to determine if the rate applies
|
|
157
157
|
* @type {string}
|
|
158
158
|
* @memberof PremRate
|
|
159
159
|
*/
|
|
160
160
|
'county_Code'?: string | null;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* Description of the PremRate
|
|
163
163
|
* @type {string}
|
|
164
164
|
* @memberof PremRate
|
|
165
165
|
*/
|
|
166
166
|
'description'?: string | null;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* Unique identifier for the Division
|
|
169
169
|
* @type {string}
|
|
170
170
|
* @memberof PremRate
|
|
171
171
|
*/
|
|
172
172
|
'division_ID'?: string | null;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* Effective Date of the PremRate
|
|
175
175
|
* @type {string}
|
|
176
176
|
* @memberof PremRate
|
|
177
177
|
*/
|
|
178
178
|
'effective_Date'?: string | null;
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
180
|
+
* Determines if the contribution is Employee or Employer
|
|
181
181
|
* @type {string}
|
|
182
182
|
* @memberof PremRate
|
|
183
183
|
*/
|
|
184
184
|
'employee_Employer_Contribution'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Amount of the contribution
|
|
187
187
|
* @type {number}
|
|
188
188
|
* @memberof PremRate
|
|
189
189
|
*/
|
|
190
190
|
'employer_Contribution'?: number | null;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* Determines if the contribution is a percentage 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.
|
|
193
193
|
* @type {boolean}
|
|
194
194
|
* @memberof PremRate
|
|
195
195
|
*/
|
|
196
196
|
'employer_Contribution_Pct': boolean;
|
|
197
197
|
/**
|
|
198
|
-
*
|
|
198
|
+
* Decimal value that defines the base employer rate
|
|
199
199
|
* @type {number}
|
|
200
200
|
* @memberof PremRate
|
|
201
201
|
*/
|
|
202
202
|
'employer_Rate'?: number | null;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* Maximum the employer rate will be regardless of the calculation
|
|
205
205
|
* @type {number}
|
|
206
206
|
* @memberof PremRate
|
|
207
207
|
*/
|
|
208
208
|
'employer_Rate_Max'?: number | null;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Minimum the employer rate will be regardless of the calculation
|
|
211
211
|
* @type {number}
|
|
212
212
|
* @memberof PremRate
|
|
213
213
|
*/
|
|
214
214
|
'employer_Rate_Minimum'?: number | null;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Type of Employer Rate
|
|
217
217
|
* @type {string}
|
|
218
218
|
* @memberof PremRate
|
|
219
219
|
*/
|
|
220
220
|
'employer_Rate_Type'?: string | null;
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* First variable used in calculating the employer rate based on the type
|
|
223
223
|
* @type {number}
|
|
224
224
|
* @memberof PremRate
|
|
225
225
|
*/
|
|
226
226
|
'employer_Rate_Variable1'?: number | null;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Second variable used in calculating the employer rate based on the type
|
|
229
229
|
* @type {number}
|
|
230
230
|
* @memberof PremRate
|
|
231
231
|
*/
|
|
232
232
|
'employer_Rate_Variable2'?: number | null;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* Third variable used in calculating the employer rate based on the type
|
|
235
235
|
* @type {number}
|
|
236
236
|
* @memberof PremRate
|
|
237
237
|
*/
|
|
238
238
|
'employer_Rate_Variable3'?: number | null;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Precision that the employerrate is rounded to
|
|
241
241
|
* @type {number}
|
|
242
242
|
* @memberof PremRate
|
|
243
243
|
*/
|
|
244
244
|
'employer_Round_Precision'?: number | null;
|
|
245
245
|
/**
|
|
246
|
-
*
|
|
246
|
+
* Type that determine how the employer rate is rounded
|
|
247
247
|
* @type {string}
|
|
248
248
|
* @memberof PremRate
|
|
249
249
|
*/
|
|
250
250
|
'employer_Round_Type'?: string | null;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* Beginning range based on number of enrollments
|
|
253
253
|
* @type {number}
|
|
254
254
|
* @memberof PremRate
|
|
255
255
|
*/
|
|
256
256
|
'enrolled_Count_From'?: number | null;
|
|
257
257
|
/**
|
|
258
|
-
*
|
|
258
|
+
* Ending range based on number of enrollments
|
|
259
259
|
* @type {number}
|
|
260
260
|
* @memberof PremRate
|
|
261
261
|
*/
|
|
262
262
|
'enrolled_Count_Thru'?: number | null;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* Type of enrollments used to calculate the number of enrollments
|
|
265
265
|
* @type {string}
|
|
266
266
|
* @memberof PremRate
|
|
267
267
|
*/
|
|
268
268
|
'enrolled_Count_Type'?: string | null;
|
|
269
269
|
/**
|
|
270
|
-
*
|
|
270
|
+
* Beginning range based on length of enrollment
|
|
271
271
|
* @type {number}
|
|
272
272
|
* @memberof PremRate
|
|
273
273
|
*/
|
|
274
274
|
'enrolled_Duration_From'?: number | null;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* Minimum length of enrollment
|
|
277
277
|
* @type {number}
|
|
278
278
|
* @memberof PremRate
|
|
279
279
|
*/
|
|
280
280
|
'enrolled_Duration_Min'?: number | null;
|
|
281
281
|
/**
|
|
282
|
-
*
|
|
282
|
+
* Determines if the date is based on the Member or the Plan enrollment
|
|
283
283
|
* @type {string}
|
|
284
284
|
* @memberof PremRate
|
|
285
285
|
*/
|
|
286
286
|
'enrolled_Duration_Option'?: string | null;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* Ending range based on length of enrollment
|
|
289
289
|
* @type {number}
|
|
290
290
|
* @memberof PremRate
|
|
291
291
|
*/
|
|
292
292
|
'enrolled_Duration_Thru'?: number | null;
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Type of date used to determine the enrollment range
|
|
295
295
|
* @type {string}
|
|
296
296
|
* @memberof PremRate
|
|
297
297
|
*/
|
|
298
298
|
'enrolled_Duration_Type'?: string | null;
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Date record was first added to the system
|
|
301
301
|
* @type {string}
|
|
302
302
|
* @memberof PremRate
|
|
303
303
|
*/
|
|
304
304
|
'entry_Date'?: string;
|
|
305
305
|
/**
|
|
306
|
-
*
|
|
306
|
+
* User that first added the record to the system
|
|
307
307
|
* @type {string}
|
|
308
308
|
* @memberof PremRate
|
|
309
309
|
*/
|
|
310
310
|
'entry_User'?: string | null;
|
|
311
311
|
/**
|
|
312
|
-
*
|
|
312
|
+
* Used to determine which records are updated when applying changes to a template 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.
|
|
313
313
|
* @type {boolean}
|
|
314
314
|
* @memberof PremRate
|
|
315
315
|
*/
|
|
316
316
|
'group_Division_Offering': boolean;
|
|
317
317
|
/**
|
|
318
|
-
*
|
|
318
|
+
* Unique identifier for the Group
|
|
319
319
|
* @type {string}
|
|
320
320
|
* @memberof PremRate
|
|
321
321
|
*/
|
|
322
322
|
'group_ID'?: string | null;
|
|
323
323
|
/**
|
|
324
|
-
*
|
|
324
|
+
* Unique sequence for a Member
|
|
325
325
|
* @type {string}
|
|
326
326
|
* @memberof PremRate
|
|
327
327
|
*/
|
|
328
328
|
'member_Seq'?: string | null;
|
|
329
329
|
/**
|
|
330
|
-
*
|
|
330
|
+
* Unique identifier for the Network
|
|
331
331
|
* @type {string}
|
|
332
332
|
* @memberof PremRate
|
|
333
333
|
*/
|
|
334
334
|
'network_ID'?: string | null;
|
|
335
335
|
/**
|
|
336
|
-
*
|
|
336
|
+
* Type of Network
|
|
337
337
|
* @type {string}
|
|
338
338
|
* @memberof PremRate
|
|
339
339
|
*/
|
|
340
340
|
'network_Type'?: string | null;
|
|
341
341
|
/**
|
|
342
|
-
*
|
|
342
|
+
* Flag that determines the Age based on the date of hire 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.
|
|
343
343
|
* @type {boolean}
|
|
344
344
|
* @memberof PremRate
|
|
345
345
|
*/
|
|
346
346
|
'new_Hire_Age': boolean;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* 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.
|
|
349
|
+
* @type {boolean}
|
|
350
|
+
* @memberof PremRate
|
|
351
|
+
*/
|
|
352
|
+
'override_Enrolled_Dates': boolean;
|
|
353
|
+
/**
|
|
354
|
+
* PremRate_Key of the template rate this rate was created from
|
|
349
355
|
* @type {number}
|
|
350
356
|
* @memberof PremRate
|
|
351
357
|
*/
|
|
352
358
|
'parent_PremRate_Key'?: number | null;
|
|
353
359
|
/**
|
|
354
|
-
*
|
|
360
|
+
* Unique identifier for the Plan
|
|
355
361
|
* @type {string}
|
|
356
362
|
* @memberof PremRate
|
|
357
363
|
*/
|
|
358
364
|
'plan_ID'?: string | null;
|
|
359
365
|
/**
|
|
360
|
-
*
|
|
366
|
+
* Type of Plan
|
|
361
367
|
* @type {string}
|
|
362
368
|
* @memberof PremRate
|
|
363
369
|
*/
|
|
364
370
|
'plan_Type'?: string | null;
|
|
365
371
|
/**
|
|
366
|
-
*
|
|
372
|
+
* Basis of the PremRate
|
|
367
373
|
* @type {string}
|
|
368
374
|
* @memberof PremRate
|
|
369
375
|
*/
|
|
370
376
|
'premRate_Basis'?: string | null;
|
|
371
377
|
/**
|
|
372
|
-
*
|
|
378
|
+
* Category of the PremRate
|
|
373
379
|
* @type {string}
|
|
374
380
|
* @memberof PremRate
|
|
375
381
|
*/
|
|
376
382
|
'premRate_Category'?: string | null;
|
|
377
383
|
/**
|
|
378
|
-
*
|
|
384
|
+
* Unique identifier for the PremRate
|
|
379
385
|
* @type {string}
|
|
380
386
|
* @memberof PremRate
|
|
381
387
|
*/
|
|
382
388
|
'premRate_ID'?: string | null;
|
|
383
389
|
/**
|
|
384
|
-
*
|
|
390
|
+
* Type of the PremRate
|
|
385
391
|
* @type {string}
|
|
386
392
|
* @memberof PremRate
|
|
387
393
|
*/
|
|
388
394
|
'premRate_Type'?: string | null;
|
|
389
395
|
/**
|
|
390
|
-
*
|
|
396
|
+
* Flag that determines if the rate is prorated
|
|
391
397
|
* @type {boolean}
|
|
392
398
|
* @memberof PremRate
|
|
393
399
|
*/
|
|
394
400
|
'premium_Proration': boolean;
|
|
395
401
|
/**
|
|
396
|
-
*
|
|
402
|
+
* Decimal value that defines the base rate
|
|
397
403
|
* @type {number}
|
|
398
404
|
* @memberof PremRate
|
|
399
405
|
*/
|
|
400
406
|
'rate'?: number | null;
|
|
401
407
|
/**
|
|
402
|
-
*
|
|
408
|
+
* Maximum the rate will be regardless of the calculation
|
|
403
409
|
* @type {number}
|
|
404
410
|
* @memberof PremRate
|
|
405
411
|
*/
|
|
406
412
|
'rate_Max'?: number | null;
|
|
407
413
|
/**
|
|
408
|
-
*
|
|
414
|
+
* Minimum the rate will be regardless of the calculation
|
|
409
415
|
* @type {number}
|
|
410
416
|
* @memberof PremRate
|
|
411
417
|
*/
|
|
412
418
|
'rate_Minimum'?: number | null;
|
|
413
419
|
/**
|
|
414
|
-
*
|
|
420
|
+
* How often the rate applies
|
|
415
421
|
* @type {string}
|
|
416
422
|
* @memberof PremRate
|
|
417
423
|
*/
|
|
418
424
|
'rate_Pace'?: string | null;
|
|
419
425
|
/**
|
|
420
|
-
*
|
|
426
|
+
* The day the rate applies when the pace is weekly
|
|
421
427
|
* @type {string}
|
|
422
428
|
* @memberof PremRate
|
|
423
429
|
*/
|
|
424
430
|
'rate_Pace_Type'?: string | null;
|
|
425
431
|
/**
|
|
426
|
-
*
|
|
432
|
+
* Precision that the rate is rounded to
|
|
427
433
|
* @type {number}
|
|
428
434
|
* @memberof PremRate
|
|
429
435
|
*/
|
|
430
436
|
'rate_Round_Precision'?: number | null;
|
|
431
437
|
/**
|
|
432
|
-
*
|
|
438
|
+
* Type that determine how the rate is rounded
|
|
433
439
|
* @type {string}
|
|
434
440
|
* @memberof PremRate
|
|
435
441
|
*/
|
|
436
442
|
'rate_Round_Type'?: string | null;
|
|
437
443
|
/**
|
|
438
|
-
*
|
|
444
|
+
* Type of Rate
|
|
439
445
|
* @type {string}
|
|
440
446
|
* @memberof PremRate
|
|
441
447
|
*/
|
|
442
448
|
'rate_Type'?: string | null;
|
|
443
449
|
/**
|
|
444
|
-
*
|
|
450
|
+
* First variable used in calculating the rate based on the type
|
|
445
451
|
* @type {number}
|
|
446
452
|
* @memberof PremRate
|
|
447
453
|
*/
|
|
448
454
|
'rate_Variable1'?: number | null;
|
|
449
455
|
/**
|
|
450
|
-
*
|
|
456
|
+
* Second variable used in calculating the rate based on the type
|
|
451
457
|
* @type {number}
|
|
452
458
|
* @memberof PremRate
|
|
453
459
|
*/
|
|
454
460
|
'rate_Variable2'?: number | null;
|
|
455
461
|
/**
|
|
456
|
-
*
|
|
462
|
+
* Third variable used in calculating the rate based on the type
|
|
457
463
|
* @type {number}
|
|
458
464
|
* @memberof PremRate
|
|
459
465
|
*/
|
|
460
466
|
'rate_Variable3'?: number | null;
|
|
461
467
|
/**
|
|
462
|
-
*
|
|
468
|
+
* Region Code of the Address used to determine if the rate applies
|
|
463
469
|
* @type {string}
|
|
464
470
|
* @memberof PremRate
|
|
465
471
|
*/
|
|
466
472
|
'region_Code'?: string | null;
|
|
467
473
|
/**
|
|
468
|
-
*
|
|
474
|
+
* Relationship for the PremRate
|
|
469
475
|
* @type {string}
|
|
470
476
|
* @memberof PremRate
|
|
471
477
|
*/
|
|
472
478
|
'relationship'?: string | null;
|
|
473
479
|
/**
|
|
474
|
-
*
|
|
480
|
+
* Flag used to determine what Sex the rate applies to
|
|
475
481
|
* @type {string}
|
|
476
482
|
* @memberof PremRate
|
|
477
483
|
*/
|
|
478
484
|
'sex'?: string | null;
|
|
479
485
|
/**
|
|
480
|
-
*
|
|
486
|
+
* Flag to determine if the rate applies to Smokers
|
|
481
487
|
* @type {string}
|
|
482
488
|
* @memberof PremRate
|
|
483
489
|
*/
|
|
484
490
|
'smoker'?: string | null;
|
|
485
491
|
/**
|
|
486
|
-
*
|
|
492
|
+
* State of the Address used to determine if the rate applies
|
|
487
493
|
* @type {string}
|
|
488
494
|
* @memberof PremRate
|
|
489
495
|
*/
|
|
490
496
|
'state'?: string | null;
|
|
491
497
|
/**
|
|
492
|
-
*
|
|
498
|
+
* Unique identifier for the Subscriber
|
|
493
499
|
* @type {string}
|
|
494
500
|
* @memberof PremRate
|
|
495
501
|
*/
|
|
496
502
|
'subscriber_ID'?: string | null;
|
|
497
503
|
/**
|
|
498
|
-
*
|
|
504
|
+
* Term Date of the PremRate
|
|
499
505
|
* @type {string}
|
|
500
506
|
* @memberof PremRate
|
|
501
507
|
*/
|
|
502
508
|
'term_Date'?: string | null;
|
|
503
509
|
/**
|
|
504
|
-
*
|
|
510
|
+
* Tier of the PremRate
|
|
505
511
|
* @type {string}
|
|
506
512
|
* @memberof PremRate
|
|
507
513
|
*/
|
|
508
514
|
'tier'?: string | null;
|
|
509
515
|
/**
|
|
510
|
-
*
|
|
516
|
+
* Date the record was last updated in the system
|
|
511
517
|
* @type {string}
|
|
512
518
|
* @memberof PremRate
|
|
513
519
|
*/
|
|
514
520
|
'update_Date'?: string;
|
|
515
521
|
/**
|
|
516
|
-
*
|
|
522
|
+
* User that last updated the record in the system
|
|
517
523
|
* @type {string}
|
|
518
524
|
* @memberof PremRate
|
|
519
525
|
*/
|
|
520
526
|
'update_User'?: string | null;
|
|
521
527
|
/**
|
|
522
|
-
*
|
|
528
|
+
* Beginning Zip Code of the Address used to determine if the rate applies
|
|
523
529
|
* @type {string}
|
|
524
530
|
* @memberof PremRate
|
|
525
531
|
*/
|
|
526
532
|
'zip_Code_From'?: string | null;
|
|
527
533
|
/**
|
|
528
|
-
*
|
|
534
|
+
* Ending Zip Code of the Address used to determine if the rate applies
|
|
529
535
|
* @type {string}
|
|
530
536
|
* @memberof PremRate
|
|
531
537
|
*/
|
|
@@ -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 { StateInterest } from './state-interest';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface StateInterestListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface StateInterestListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<StateInterest>}
|
|
29
|
+
* @memberof StateInterestListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<StateInterest> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof StateInterestListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof StateInterestListVBAResponse
|
|
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 { StateInterest } from './state-interest';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface StateInterestVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface StateInterestVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {StateInterest}
|
|
29
|
+
* @memberof StateInterestVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: StateInterest;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof StateInterestVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof StateInterestVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|