@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230117.1 → 1.20230130.2

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.
@@ -80,6 +80,18 @@ export interface MemberBeneficiary {
80
80
  * @memberof MemberBeneficiary
81
81
  */
82
82
  'end_Date'?: string | null;
83
+ /**
84
+ * Date when the record was first added to the system.
85
+ * @type {string}
86
+ * @memberof MemberBeneficiary
87
+ */
88
+ 'entry_Date'?: string;
89
+ /**
90
+ * User that first added the record to the system.
91
+ * @type {string}
92
+ * @memberof MemberBeneficiary
93
+ */
94
+ 'entry_User'?: string | null;
83
95
  /**
84
96
  * Indicates if interest should be excluded when adjudicating Life claims paid to this beneficiary.
85
97
  * @type {boolean}
@@ -134,6 +146,12 @@ export interface MemberBeneficiary {
134
146
  * @memberof MemberBeneficiary
135
147
  */
136
148
  'ssn'?: string | null;
149
+ /**
150
+ *
151
+ * @type {boolean}
152
+ * @memberof MemberBeneficiary
153
+ */
154
+ 'secondary_Beneficiary'?: boolean | null;
137
155
  /**
138
156
  * Start date of the Beneficiary\'s status.
139
157
  * @type {string}
@@ -146,6 +164,24 @@ export interface MemberBeneficiary {
146
164
  * @memberof MemberBeneficiary
147
165
  */
148
166
  'state'?: string | null;
167
+ /**
168
+ *
169
+ * @type {boolean}
170
+ * @memberof MemberBeneficiary
171
+ */
172
+ 'tertiary_Beneficiary'?: boolean | null;
173
+ /**
174
+ * Date when the record was last updated in the system.
175
+ * @type {string}
176
+ * @memberof MemberBeneficiary
177
+ */
178
+ 'update_Date'?: string;
179
+ /**
180
+ * User that last updated the record in the system.
181
+ * @type {string}
182
+ * @memberof MemberBeneficiary
183
+ */
184
+ 'update_User'?: string | null;
149
185
  /**
150
186
  * Zip code of the Beneficiary\'s primary address.
151
187
  * @type {string}
@@ -38,12 +38,30 @@ export interface PlanBenefitRate {
38
38
  * @memberof PlanBenefitRate
39
39
  */
40
40
  'effective_Date': string;
41
+ /**
42
+ * Date when the record was added to the system.
43
+ * @type {string}
44
+ * @memberof PlanBenefitRate
45
+ */
46
+ 'entry_Date'?: string;
47
+ /**
48
+ * User that first added the record to the system.
49
+ * @type {string}
50
+ * @memberof PlanBenefitRate
51
+ */
52
+ 'entry_User'?: string | null;
41
53
  /**
42
54
  * This code is applied to any claim that utilizes the benefit rate.
43
55
  * @type {string}
44
56
  * @memberof PlanBenefitRate
45
57
  */
46
58
  'ex_Code'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PlanBenefitRate
63
+ */
64
+ 'network_ID'?: string | null;
47
65
  /**
48
66
  * References the PlanBenefits.Plan_ID value in parent table.
49
67
  * @type {string}
@@ -86,5 +104,17 @@ export interface PlanBenefitRate {
86
104
  * @memberof PlanBenefitRate
87
105
  */
88
106
  'term_Date'?: string | null;
107
+ /**
108
+ * Date when the record was last updated in the system.
109
+ * @type {string}
110
+ * @memberof PlanBenefitRate
111
+ */
112
+ 'update_Date'?: string;
113
+ /**
114
+ * User that last updated the record in the system.
115
+ * @type {string}
116
+ * @memberof PlanBenefitRate
117
+ */
118
+ 'update_User'?: string | null;
89
119
  }
90
120