@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230130.2 → 1.20230225.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 +18 -3
- package/api/adv-accounting-api.ts +10 -26
- package/api/commission-rates-api.ts +98 -0
- package/api/event-args-api.ts +15 -15
- package/api/events-api.ts +87 -0
- package/api/group-contract-plans-api.ts +105 -0
- package/api/group-contracts-api.ts +105 -0
- package/api/group-divisions-api.ts +115 -0
- package/api/group-volumes-api.ts +15 -14
- package/api/payor-accounts-api.ts +75 -130
- package/api/plan-auth-penalty-benefits-api.ts +232 -91
- package/api/plan-benefit-cascades-api.ts +15 -23
- package/api/premium-rates-api.ts +107 -0
- package/models/claim-batch-detail.ts +145 -139
- package/models/claim-batch.ts +668 -446
- package/models/claim-detail.ts +130 -124
- package/models/claim-pre-batch-detail.ts +100 -94
- package/models/claim-pre-batch.ts +600 -378
- package/models/claim.ts +508 -280
- package/models/commission-rate-division-config.ts +43 -0
- package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
- package/models/commission-rate-nested.ts +43 -0
- package/models/commission-rate-plan-config.ts +43 -0
- package/models/commission-rate-rate.ts +36 -0
- package/models/company-data.ts +421 -403
- package/models/copy-group-division.ts +132 -0
- package/models/cost-contain-zelis-ex-code.ts +6 -6
- package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
- package/models/group-volume-division-config.ts +43 -0
- package/models/group-volume-nested.ts +3 -3
- package/models/group-volume-plan-config.ts +43 -0
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +18 -3
- 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-prior-accum.ts +28 -28
- package/models/plan-auth-penalty-benefit.ts +24 -0
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +57 -51
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-rate-basis-config.ts +43 -0
- package/models/prem-rate-category-config.ts +43 -0
- package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
- package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
- package/models/prem-rate-nested.ts +43 -0
- package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
- package/models/prem-rate-rate.ts +36 -0
- package/models/prem-rate.ts +85 -85
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/users.ts +8 -8
- package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
- package/models/vbagroup-contract.ts +55 -0
- package/package.json +1 -1
package/models/prem-rate.ts
CHANGED
|
@@ -21,511 +21,511 @@
|
|
|
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
|
+
* PremRate_Key of the template rate this rate was created from
|
|
349
349
|
* @type {number}
|
|
350
350
|
* @memberof PremRate
|
|
351
351
|
*/
|
|
352
352
|
'parent_PremRate_Key'?: number | null;
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* Unique identifier for the Plan
|
|
355
355
|
* @type {string}
|
|
356
356
|
* @memberof PremRate
|
|
357
357
|
*/
|
|
358
358
|
'plan_ID'?: string | null;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
360
|
+
* Type of Plan
|
|
361
361
|
* @type {string}
|
|
362
362
|
* @memberof PremRate
|
|
363
363
|
*/
|
|
364
364
|
'plan_Type'?: string | null;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* Basis of the PremRate
|
|
367
367
|
* @type {string}
|
|
368
368
|
* @memberof PremRate
|
|
369
369
|
*/
|
|
370
370
|
'premRate_Basis'?: string | null;
|
|
371
371
|
/**
|
|
372
|
-
*
|
|
372
|
+
* Category of the PremRate
|
|
373
373
|
* @type {string}
|
|
374
374
|
* @memberof PremRate
|
|
375
375
|
*/
|
|
376
376
|
'premRate_Category'?: string | null;
|
|
377
377
|
/**
|
|
378
|
-
*
|
|
378
|
+
* Unique identifier for the PremRate
|
|
379
379
|
* @type {string}
|
|
380
380
|
* @memberof PremRate
|
|
381
381
|
*/
|
|
382
382
|
'premRate_ID'?: string | null;
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* Type of the PremRate
|
|
385
385
|
* @type {string}
|
|
386
386
|
* @memberof PremRate
|
|
387
387
|
*/
|
|
388
388
|
'premRate_Type'?: string | null;
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* Flag that determines if the rate is prorated
|
|
391
391
|
* @type {boolean}
|
|
392
392
|
* @memberof PremRate
|
|
393
393
|
*/
|
|
394
394
|
'premium_Proration': boolean;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* Decimal value that defines the base rate
|
|
397
397
|
* @type {number}
|
|
398
398
|
* @memberof PremRate
|
|
399
399
|
*/
|
|
400
400
|
'rate'?: number | null;
|
|
401
401
|
/**
|
|
402
|
-
*
|
|
402
|
+
* Maximum the rate will be regardless of the calculation
|
|
403
403
|
* @type {number}
|
|
404
404
|
* @memberof PremRate
|
|
405
405
|
*/
|
|
406
406
|
'rate_Max'?: number | null;
|
|
407
407
|
/**
|
|
408
|
-
*
|
|
408
|
+
* Minimum the rate will be regardless of the calculation
|
|
409
409
|
* @type {number}
|
|
410
410
|
* @memberof PremRate
|
|
411
411
|
*/
|
|
412
412
|
'rate_Minimum'?: number | null;
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* How often the rate applies
|
|
415
415
|
* @type {string}
|
|
416
416
|
* @memberof PremRate
|
|
417
417
|
*/
|
|
418
418
|
'rate_Pace'?: string | null;
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* The day the rate applies when the pace is weekly
|
|
421
421
|
* @type {string}
|
|
422
422
|
* @memberof PremRate
|
|
423
423
|
*/
|
|
424
424
|
'rate_Pace_Type'?: string | null;
|
|
425
425
|
/**
|
|
426
|
-
*
|
|
426
|
+
* Precision that the rate is rounded to
|
|
427
427
|
* @type {number}
|
|
428
428
|
* @memberof PremRate
|
|
429
429
|
*/
|
|
430
430
|
'rate_Round_Precision'?: number | null;
|
|
431
431
|
/**
|
|
432
|
-
*
|
|
432
|
+
* Type that determine how the rate is rounded
|
|
433
433
|
* @type {string}
|
|
434
434
|
* @memberof PremRate
|
|
435
435
|
*/
|
|
436
436
|
'rate_Round_Type'?: string | null;
|
|
437
437
|
/**
|
|
438
|
-
*
|
|
438
|
+
* Type of Rate
|
|
439
439
|
* @type {string}
|
|
440
440
|
* @memberof PremRate
|
|
441
441
|
*/
|
|
442
442
|
'rate_Type'?: string | null;
|
|
443
443
|
/**
|
|
444
|
-
*
|
|
444
|
+
* First variable used in calculating the rate based on the type
|
|
445
445
|
* @type {number}
|
|
446
446
|
* @memberof PremRate
|
|
447
447
|
*/
|
|
448
448
|
'rate_Variable1'?: number | null;
|
|
449
449
|
/**
|
|
450
|
-
*
|
|
450
|
+
* Second variable used in calculating the rate based on the type
|
|
451
451
|
* @type {number}
|
|
452
452
|
* @memberof PremRate
|
|
453
453
|
*/
|
|
454
454
|
'rate_Variable2'?: number | null;
|
|
455
455
|
/**
|
|
456
|
-
*
|
|
456
|
+
* Third variable used in calculating the rate based on the type
|
|
457
457
|
* @type {number}
|
|
458
458
|
* @memberof PremRate
|
|
459
459
|
*/
|
|
460
460
|
'rate_Variable3'?: number | null;
|
|
461
461
|
/**
|
|
462
|
-
*
|
|
462
|
+
* Region Code of the Address used to determine if the rate applies
|
|
463
463
|
* @type {string}
|
|
464
464
|
* @memberof PremRate
|
|
465
465
|
*/
|
|
466
466
|
'region_Code'?: string | null;
|
|
467
467
|
/**
|
|
468
|
-
*
|
|
468
|
+
* Relationship for the PremRate
|
|
469
469
|
* @type {string}
|
|
470
470
|
* @memberof PremRate
|
|
471
471
|
*/
|
|
472
472
|
'relationship'?: string | null;
|
|
473
473
|
/**
|
|
474
|
-
*
|
|
474
|
+
* Flag used to determine what Sex the rate applies to
|
|
475
475
|
* @type {string}
|
|
476
476
|
* @memberof PremRate
|
|
477
477
|
*/
|
|
478
478
|
'sex'?: string | null;
|
|
479
479
|
/**
|
|
480
|
-
*
|
|
480
|
+
* Flag to determine if the rate applies to Smokers
|
|
481
481
|
* @type {string}
|
|
482
482
|
* @memberof PremRate
|
|
483
483
|
*/
|
|
484
484
|
'smoker'?: string | null;
|
|
485
485
|
/**
|
|
486
|
-
*
|
|
486
|
+
* State of the Address used to determine if the rate applies
|
|
487
487
|
* @type {string}
|
|
488
488
|
* @memberof PremRate
|
|
489
489
|
*/
|
|
490
490
|
'state'?: string | null;
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Unique identifier for the Subscriber
|
|
493
493
|
* @type {string}
|
|
494
494
|
* @memberof PremRate
|
|
495
495
|
*/
|
|
496
496
|
'subscriber_ID'?: string | null;
|
|
497
497
|
/**
|
|
498
|
-
*
|
|
498
|
+
* Term Date of the PremRate
|
|
499
499
|
* @type {string}
|
|
500
500
|
* @memberof PremRate
|
|
501
501
|
*/
|
|
502
502
|
'term_Date'?: string | null;
|
|
503
503
|
/**
|
|
504
|
-
*
|
|
504
|
+
* Tier of the PremRate
|
|
505
505
|
* @type {string}
|
|
506
506
|
* @memberof PremRate
|
|
507
507
|
*/
|
|
508
508
|
'tier'?: string | null;
|
|
509
509
|
/**
|
|
510
|
-
*
|
|
510
|
+
* Date the record was last updated in the system
|
|
511
511
|
* @type {string}
|
|
512
512
|
* @memberof PremRate
|
|
513
513
|
*/
|
|
514
514
|
'update_Date'?: string;
|
|
515
515
|
/**
|
|
516
|
-
*
|
|
516
|
+
* User that last updated the record in the system
|
|
517
517
|
* @type {string}
|
|
518
518
|
* @memberof PremRate
|
|
519
519
|
*/
|
|
520
520
|
'update_User'?: string | null;
|
|
521
521
|
/**
|
|
522
|
-
*
|
|
522
|
+
* Beginning Zip Code of the Address used to determine if the rate applies
|
|
523
523
|
* @type {string}
|
|
524
524
|
* @memberof PremRate
|
|
525
525
|
*/
|
|
526
526
|
'zip_Code_From'?: string | null;
|
|
527
527
|
/**
|
|
528
|
-
*
|
|
528
|
+
* Ending Zip Code of the Address used to determine if the rate applies
|
|
529
529
|
* @type {string}
|
|
530
530
|
* @memberof PremRate
|
|
531
531
|
*/
|
|
@@ -39,13 +39,13 @@ export interface SubEnrollmentPlan {
|
|
|
39
39
|
*/
|
|
40
40
|
'division_ID': string;
|
|
41
41
|
/**
|
|
42
|
-
* References the Subenrollment.Group_Coverage_Start value in the parent table.
|
|
42
|
+
* References the Subenrollment.Group_Coverage_Start value in the parent table. 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 SubEnrollmentPlan
|
|
45
45
|
*/
|
|
46
46
|
'group_Coverage_Start': string;
|
|
47
47
|
/**
|
|
48
|
-
* References the Subenrollment.Start_Date value in the parent table.
|
|
48
|
+
* References the Subenrollment.Start_Date value in the parent table. 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.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof SubEnrollmentPlan
|
|
51
51
|
*/
|
|
@@ -57,7 +57,7 @@ export interface SubEnrollmentPlan {
|
|
|
57
57
|
*/
|
|
58
58
|
'plan_ID': string;
|
|
59
59
|
/**
|
|
60
|
-
* Start date of Plan coverage.
|
|
60
|
+
* Start date of Plan coverage. 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.
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof SubEnrollmentPlan
|
|
63
63
|
*/
|
|
@@ -81,31 +81,31 @@ export interface SubEnrollmentPlan {
|
|
|
81
81
|
*/
|
|
82
82
|
'entry_User'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Member elected Daily Benefit Amount
|
|
85
85
|
* @type {number}
|
|
86
86
|
* @memberof SubEnrollmentPlan
|
|
87
87
|
*/
|
|
88
88
|
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Lifetime Max Amount elected
|
|
91
91
|
* @type {number}
|
|
92
92
|
* @memberof SubEnrollmentPlan
|
|
93
93
|
*/
|
|
94
94
|
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Lifetime Max Days elected
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof SubEnrollmentPlan
|
|
99
99
|
*/
|
|
100
100
|
'ltC_Lifetime_Max_Days'?: number | null;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Lifetime Max Years elected
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof SubEnrollmentPlan
|
|
105
105
|
*/
|
|
106
106
|
'ltC_Lifetime_Max_Years'?: number | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Member elected Monthly Benefit Amount
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof SubEnrollmentPlan
|
|
111
111
|
*/
|
|
@@ -123,7 +123,7 @@ export interface SubEnrollmentPlan {
|
|
|
123
123
|
*/
|
|
124
124
|
'plan_End'?: string | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* This identifier the reason the plan was termed.
|
|
127
127
|
* @type {number}
|
|
128
128
|
* @memberof SubEnrollmentPlan
|
|
129
129
|
*/
|
|
@@ -147,7 +147,7 @@ export interface SubEnrollmentPlan {
|
|
|
147
147
|
*/
|
|
148
148
|
'update_User'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
* This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation.
|
|
150
|
+
* This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation. 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.
|
|
151
151
|
* @type {boolean}
|
|
152
152
|
* @memberof SubEnrollmentPlan
|
|
153
153
|
*/
|