@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.
Files changed (58) hide show
  1. package/.openapi-generator/FILES +20 -1
  2. package/api/capitation-plan-rates-api.ts +22 -13
  3. package/api/commission-adjustments-api.ts +59 -107
  4. package/api/commission-rate-subscribers-api.ts +126 -0
  5. package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
  6. package/api/context4-health-cost-containment-options-api.ts +17 -8
  7. package/api/groups-api.ts +97 -0
  8. package/api/invoice-status-api.ts +155 -0
  9. package/api/invoice-types-api.ts +155 -0
  10. package/api/members-api.ts +323 -0
  11. package/api/plan-relationship-age-restrictions-api.ts +63 -148
  12. package/api/premium-invoice-subscribers-api.ts +123 -0
  13. package/api/process-logging-api.ts +105 -0
  14. package/api/security-area-user-groups-api.ts +100 -0
  15. package/api/security-area-users-api.ts +98 -0
  16. package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
  17. package/api/ucnetwork-api.ts +710 -0
  18. package/api.ts +3 -1
  19. package/models/auth-adjustment.ts +2 -2
  20. package/models/billing-cycle.ts +25 -1
  21. package/models/call-tracking.ts +25 -1
  22. package/models/check-batch.ts +27 -3
  23. package/models/commission-adjustment.ts +21 -15
  24. package/models/commission-rate.ts +90 -36
  25. package/models/company-data.ts +12 -0
  26. package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
  27. package/models/enrollment-pcpauto-assign-member.ts +96 -0
  28. package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
  29. package/models/enrollment-pcpauto-assign-provider.ts +90 -0
  30. package/models/enrollment-pcpauto-assign.ts +3 -3
  31. package/models/index.ts +17 -0
  32. package/models/payee.ts +29 -5
  33. package/models/plan-pre-ex.ts +54 -0
  34. package/models/plans.ts +6 -0
  35. package/models/prem-invoice.ts +27 -21
  36. package/models/prem-rate-type.ts +6 -0
  37. package/models/prem-rate.ts +6 -0
  38. package/models/state-interest.ts +72 -0
  39. package/models/state.ts +35 -5
  40. package/models/string-list-vbaresponse.ts +44 -0
  41. package/models/sub-enrollment-plan.ts +6 -0
  42. package/models/sub-payment-method.ts +16 -10
  43. package/models/subscriber-forfeiture-status.ts +25 -1
  44. package/models/subscribers.ts +6 -0
  45. package/models/ucnetwork-list-vbaresponse.ts +45 -0
  46. package/models/ucnetwork-vbaresponse.ts +45 -0
  47. package/models/ucnetwork.ts +90 -0
  48. package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
  49. package/models/vbacommission-rate-subscriber.ts +48 -0
  50. package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
  51. package/models/vbagroup-enrollment-summary.ts +48 -0
  52. package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
  53. package/models/vbamembers-disability-tax-summary.ts +276 -0
  54. package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
  55. package/models/vbaprem-invoice-subscriber-history.ts +108 -0
  56. package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
  57. package/package.json +1 -1
  58. package/api/subscriber-plan-forfeitures-api.ts +0 -731
@@ -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 { EnrollmentPCPAutoAssignMember } from './enrollment-pcpauto-assign-member';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface EnrollmentPCPAutoAssignMemberListVBAResponse
24
+ */
25
+ export interface EnrollmentPCPAutoAssignMemberListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<EnrollmentPCPAutoAssignMember>}
29
+ * @memberof EnrollmentPCPAutoAssignMemberListVBAResponse
30
+ */
31
+ 'data'?: Array<EnrollmentPCPAutoAssignMember> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof EnrollmentPCPAutoAssignMemberListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof EnrollmentPCPAutoAssignMemberListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,96 @@
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 EnrollmentPCPAutoAssignMember
21
+ */
22
+ export interface EnrollmentPCPAutoAssignMember {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof EnrollmentPCPAutoAssignMember
27
+ */
28
+ 'subscriber_ID'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof EnrollmentPCPAutoAssignMember
33
+ */
34
+ 'member_Seq'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof EnrollmentPCPAutoAssignMember
39
+ */
40
+ 'birth_Date'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof EnrollmentPCPAutoAssignMember
45
+ */
46
+ 'zip_Code'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof EnrollmentPCPAutoAssignMember
51
+ */
52
+ 'group_ID'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof EnrollmentPCPAutoAssignMember
57
+ */
58
+ 'division_ID'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof EnrollmentPCPAutoAssignMember
63
+ */
64
+ 'group_Coverage_Start'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof EnrollmentPCPAutoAssignMember
69
+ */
70
+ 'date_Enrolled'?: string | null;
71
+ /**
72
+ *
73
+ * @type {number}
74
+ * @memberof EnrollmentPCPAutoAssignMember
75
+ */
76
+ 'age'?: number | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof EnrollmentPCPAutoAssignMember
81
+ */
82
+ 'sex'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof EnrollmentPCPAutoAssignMember
87
+ */
88
+ 'first_Name'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof EnrollmentPCPAutoAssignMember
93
+ */
94
+ 'last_Name'?: string | null;
95
+ }
96
+
@@ -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 { EnrollmentPCPAutoAssignProvider } from './enrollment-pcpauto-assign-provider';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface EnrollmentPCPAutoAssignProviderListVBAResponse
24
+ */
25
+ export interface EnrollmentPCPAutoAssignProviderListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<EnrollmentPCPAutoAssignProvider>}
29
+ * @memberof EnrollmentPCPAutoAssignProviderListVBAResponse
30
+ */
31
+ 'data'?: Array<EnrollmentPCPAutoAssignProvider> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof EnrollmentPCPAutoAssignProviderListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof EnrollmentPCPAutoAssignProviderListVBAResponse
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 EnrollmentPCPAutoAssignProvider
21
+ */
22
+ export interface EnrollmentPCPAutoAssignProvider {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof EnrollmentPCPAutoAssignProvider
27
+ */
28
+ 'provider_ID'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof EnrollmentPCPAutoAssignProvider
33
+ */
34
+ 'zip_Code'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof EnrollmentPCPAutoAssignProvider
39
+ */
40
+ 'practice_Type'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof EnrollmentPCPAutoAssignProvider
45
+ */
46
+ 'network_ID'?: string | null;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof EnrollmentPCPAutoAssignProvider
51
+ */
52
+ 'accepting_Patients'?: boolean;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof EnrollmentPCPAutoAssignProvider
57
+ */
58
+ 'specialty_Code'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof EnrollmentPCPAutoAssignProvider
63
+ */
64
+ 'effective_Date'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof EnrollmentPCPAutoAssignProvider
69
+ */
70
+ 'expiration_Date'?: string | null;
71
+ /**
72
+ *
73
+ * @type {number}
74
+ * @memberof EnrollmentPCPAutoAssignProvider
75
+ */
76
+ 'accepting_Age_From'?: number | null;
77
+ /**
78
+ *
79
+ * @type {number}
80
+ * @memberof EnrollmentPCPAutoAssignProvider
81
+ */
82
+ 'accepting_Age_Thru'?: number | null;
83
+ /**
84
+ *
85
+ * @type {number}
86
+ * @memberof EnrollmentPCPAutoAssignProvider
87
+ */
88
+ 'member_Provider_Count'?: number | null;
89
+ }
90
+
@@ -31,19 +31,19 @@ export interface EnrollmentPCPAutoAssign {
31
31
  * @type {OptionCriteria}
32
32
  * @memberof EnrollmentPCPAutoAssign
33
33
  */
34
- 'options'?: OptionCriteria;
34
+ 'options': OptionCriteria;
35
35
  /**
36
36
  *
37
37
  * @type {Array<GroupCriteria>}
38
38
  * @memberof EnrollmentPCPAutoAssign
39
39
  */
40
- 'groupCriterias'?: Array<GroupCriteria> | null;
40
+ 'groupCriterias': Array<GroupCriteria>;
41
41
  /**
42
42
  *
43
43
  * @type {Array<NetworkCriteria>}
44
44
  * @memberof EnrollmentPCPAutoAssign
45
45
  */
46
- 'networkCriterias'?: Array<NetworkCriteria> | null;
46
+ 'networkCriterias': Array<NetworkCriteria>;
47
47
  /**
48
48
  *
49
49
  * @type {Array<SpecialtyCriteria>}
package/models/index.ts CHANGED
@@ -866,6 +866,10 @@ export * from './eligibility-status-vbaresponse';
866
866
  export * from './enrollment-disenroll';
867
867
  export * from './enrollment-disenroll-group';
868
868
  export * from './enrollment-pcpauto-assign';
869
+ export * from './enrollment-pcpauto-assign-member';
870
+ export * from './enrollment-pcpauto-assign-member-list-vbaresponse';
871
+ export * from './enrollment-pcpauto-assign-provider';
872
+ export * from './enrollment-pcpauto-assign-provider-list-vbaresponse';
869
873
  export * from './enrollment-policy-forfeiture';
870
874
  export * from './enrollment-reenroll';
871
875
  export * from './enrollment-waiting-period';
@@ -2039,6 +2043,7 @@ export * from './state-procedure-code-tax';
2039
2043
  export * from './state-procedure-code-tax-list-vbaresponse';
2040
2044
  export * from './state-procedure-code-tax-vbaresponse';
2041
2045
  export * from './state-vbaresponse';
2046
+ export * from './string-list-vbaresponse';
2042
2047
  export * from './string-static-option';
2043
2048
  export * from './string-static-option-list-vbaresponse';
2044
2049
  export * from './string-static-option-vbaresponse';
@@ -2151,6 +2156,9 @@ export * from './tooth-vbaresponse';
2151
2156
  export * from './treatment-type';
2152
2157
  export * from './treatment-type-list-vbaresponse';
2153
2158
  export * from './treatment-type-vbaresponse';
2159
+ export * from './ucnetwork';
2160
+ export * from './ucnetwork-list-vbaresponse';
2161
+ export * from './ucnetwork-vbaresponse';
2154
2162
  export * from './unit-conversion';
2155
2163
  export * from './unit-conversion-list-vbaresponse';
2156
2164
  export * from './unit-conversion-vbaresponse';
@@ -2192,6 +2200,8 @@ export * from './users-list-vbaresponse';
2192
2200
  export * from './users-vbaresponse';
2193
2201
  export * from './vbaauth';
2194
2202
  export * from './vbaauth-vbaresponse';
2203
+ export * from './vbacommission-rate-subscriber';
2204
+ export * from './vbacommission-rate-subscriber-list-vbaresponse';
2195
2205
  export * from './vbagateway-subscription';
2196
2206
  export * from './vbagateway-subscription-detail';
2197
2207
  export * from './vbagateway-subscription-detail-list-vbaresponse';
@@ -2200,6 +2210,8 @@ export * from './vbagateway-subscription-list-vbaresponse';
2200
2210
  export * from './vbagateway-subscription-vbaresponse';
2201
2211
  export * from './vbagroup-contract';
2202
2212
  export * from './vbagroup-contract-list-vbaresponse';
2213
+ export * from './vbagroup-enrollment-summary';
2214
+ export * from './vbagroup-enrollment-summary-vbaresponse';
2203
2215
  export * from './vbainterface';
2204
2216
  export * from './vbainterface-idcode';
2205
2217
  export * from './vbainterface-idcode-list-vbaresponse';
@@ -2218,9 +2230,14 @@ export * from './vbainterface-vbaresponse';
2218
2230
  export * from './vbainterface-vendor';
2219
2231
  export * from './vbainterface-vendor-list-vbaresponse';
2220
2232
  export * from './vbainterface-vendor-vbaresponse';
2233
+ export * from './vbamembers-disability-tax-summary';
2234
+ export * from './vbamembers-disability-tax-summary-vbaresponse';
2235
+ export * from './vbaprem-invoice-subscriber-history';
2236
+ export * from './vbaprem-invoice-subscriber-history-list-vbaresponse';
2221
2237
  export * from './vbaproblem-details';
2222
2238
  export * from './vbaprocess';
2223
2239
  export * from './vbaprocess-log';
2240
+ export * from './vbaprocess-log-list-vbaresponse';
2224
2241
  export * from './vbaprocess-log-vbaresponse';
2225
2242
  export * from './vbaprocess-parameter';
2226
2243
  export * from './vbaprocess-parameter-vbaresponse';
package/models/payee.ts CHANGED
@@ -74,6 +74,18 @@ export interface Payee {
74
74
  * @memberof Payee
75
75
  */
76
76
  'email_Address'?: string | null;
77
+ /**
78
+ * Date when the record was added to the system.
79
+ * @type {string}
80
+ * @memberof Payee
81
+ */
82
+ 'entry_Date'?: string;
83
+ /**
84
+ * User that first added the record to the system.
85
+ * @type {string}
86
+ * @memberof Payee
87
+ */
88
+ 'entry_User'?: string | null;
77
89
  /**
78
90
  * Country code of the Payee\'s fax number.
79
91
  * @type {string}
@@ -93,7 +105,7 @@ export interface Payee {
93
105
  */
94
106
  'federal_ID'?: string | null;
95
107
  /**
96
- * This field indicates that the Payee is currently inactive
108
+ * This field indicates that the Payee is currently inactive 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
109
  * @type {boolean}
98
110
  * @memberof Payee
99
111
  */
@@ -249,19 +261,31 @@ export interface Payee {
249
261
  */
250
262
  'tax_Zip_Code'?: string | null;
251
263
  /**
252
- * Indicates whether the Payee functions as a virtual office. This can be used for data exporting purposes.
264
+ * Date when the record was last updated in the system.
265
+ * @type {string}
266
+ * @memberof Payee
267
+ */
268
+ 'update_Date'?: string;
269
+ /**
270
+ * User that last updated the record in the system.
271
+ * @type {string}
272
+ * @memberof Payee
273
+ */
274
+ 'update_User'?: string | null;
275
+ /**
276
+ * Indicates whether the Payee functions as a virtual office. This can be used for data exporting purposes. 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.
253
277
  * @type {boolean}
254
278
  * @memberof Payee
255
279
  */
256
280
  'virtual_Office': boolean;
257
281
  /**
258
- * No longer in use.
282
+ * No longer in use. 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.
259
283
  * @type {boolean}
260
284
  * @memberof Payee
261
285
  */
262
286
  'void_Checks': boolean;
263
287
  /**
264
- * This field indicates that a W9 has been received from this Payee. This field is informational only.
288
+ * This field indicates that a W9 has been received from this Payee. This field is informational only. 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.
265
289
  * @type {boolean}
266
290
  * @memberof Payee
267
291
  */
@@ -273,7 +297,7 @@ export interface Payee {
273
297
  */
274
298
  'website'?: string | null;
275
299
  /**
276
- * Indicates whether the Payee account accepts wire transfers.
300
+ * Indicates whether the Payee account accepts wire transfers. 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.
277
301
  * @type {boolean}
278
302
  * @memberof Payee
279
303
  */
@@ -32,6 +32,48 @@ export interface PlanPreEx {
32
32
  * @memberof PlanPreEx
33
33
  */
34
34
  'coverage_Type': string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PlanPreEx
39
+ */
40
+ 'disclosed_Ex_Code'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof PlanPreEx
45
+ */
46
+ 'disclosed_From_Range'?: number | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PlanPreEx
51
+ */
52
+ 'disclosed_Pre_Ex_Amount'?: number | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PlanPreEx
57
+ */
58
+ 'disclosed_Range_Type'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof PlanPreEx
63
+ */
64
+ 'disclosed_Thru_Range'?: number | null;
65
+ /**
66
+ * Date when the record was added to the system.
67
+ * @type {string}
68
+ * @memberof PlanPreEx
69
+ */
70
+ 'entry_Date'?: string;
71
+ /**
72
+ * User that first added the record to the system.
73
+ * @type {string}
74
+ * @memberof PlanPreEx
75
+ */
76
+ 'entry_User'?: string | null;
35
77
  /**
36
78
  * Ex Code associated with the pre-existing condition.
37
79
  * @type {string}
@@ -62,5 +104,17 @@ export interface PlanPreEx {
62
104
  * @memberof PlanPreEx
63
105
  */
64
106
  'thru_Range'?: number | null;
107
+ /**
108
+ * Date when the record was last updated in the system.
109
+ * @type {string}
110
+ * @memberof PlanPreEx
111
+ */
112
+ 'update_Date'?: string;
113
+ /**
114
+ * User that last updated the record in the system.
115
+ * @type {string}
116
+ * @memberof PlanPreEx
117
+ */
118
+ 'update_User'?: string | null;
65
119
  }
66
120
 
package/models/plans.ts CHANGED
@@ -758,6 +758,12 @@ export interface Plans {
758
758
  * @memberof Plans
759
759
  */
760
760
  'remove_Member_Amount_Edit': boolean;
761
+ /**
762
+ *
763
+ * @type {string}
764
+ * @memberof Plans
765
+ */
766
+ 'situs_State'?: string | null;
761
767
  /**
762
768
  * Total deductible amount to be credited back to the Subscriber during adjudication.
763
769
  * @type {number}
@@ -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}