@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230225.1 → 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.
Files changed (44) hide show
  1. package/.openapi-generator/FILES +19 -0
  2. package/api/adv-group-api.ts +17 -17
  3. package/api/chat-gptapi.ts +154 -0
  4. package/api/groups-api.ts +17 -17
  5. package/api/prem-rate-types-api.ts +668 -0
  6. package/api/premium-invoice-payments-api.ts +124 -0
  7. package/api/premium-invoices-api.ts +336 -5
  8. package/api/premium-rate-distribution-types-api.ts +155 -0
  9. package/api/state-interest-api.ts +668 -0
  10. package/api/subscriber-plan-policies-api.ts +43 -91
  11. package/api/user-api.ts +394 -0
  12. package/api.ts +4 -0
  13. package/models/chat-message.ts +30 -0
  14. package/models/claim-batch-detail.ts +7 -1
  15. package/models/claim-batch.ts +1082 -86
  16. package/models/claim-detail.ts +7 -1
  17. package/models/claim-pre-batch-detail.ts +1 -1
  18. package/models/claim-pre-batch.ts +1138 -82
  19. package/models/claim.ts +1116 -120
  20. package/models/company-data.ts +15 -3
  21. package/models/cost-contain-zelis-ex-code.ts +6 -0
  22. package/models/enrollment-disenroll-group.ts +84 -0
  23. package/models/enrollment-disenroll.ts +28 -34
  24. package/models/index.ts +15 -0
  25. package/models/member-language.ts +2 -2
  26. package/models/member-medicare-resp.ts +50 -26
  27. package/models/members.ts +1 -1
  28. package/models/network-procedure-cluster.ts +15 -9
  29. package/models/plan-benefits.ts +1 -1
  30. package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
  31. package/models/prem-invoice-group-summary.ts +114 -0
  32. package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
  33. package/models/prem-invoice-payment-ext.ts +102 -0
  34. package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
  35. package/models/prem-invoice-slim.ts +42 -0
  36. package/models/prem-rate-type-list-vbaresponse.ts +45 -0
  37. package/models/prem-rate-type-vbaresponse.ts +45 -0
  38. package/models/prem-rate-type.ts +72 -0
  39. package/models/prem-rate.ts +6 -0
  40. package/models/state-interest-list-vbaresponse.ts +45 -0
  41. package/models/state-interest-vbaresponse.ts +45 -0
  42. package/models/state-interest.ts +84 -0
  43. package/models/user-reset-password-request.ts +42 -0
  44. package/package.json +1 -1
@@ -21,61 +21,67 @@
21
21
  */
22
22
  export interface NetworkProcedureCluster {
23
23
  /**
24
- *
24
+ * Unique identifier assigned to the network.
25
25
  * @type {string}
26
26
  * @memberof NetworkProcedureCluster
27
27
  */
28
28
  'network_ID': string;
29
29
  /**
30
- *
30
+ * Identifies the procedure cluster that is to be tied to the pricing rule.
31
31
  * @type {string}
32
32
  * @memberof NetworkProcedureCluster
33
33
  */
34
34
  'procedure_Cluster': string;
35
35
  /**
36
- *
36
+ * Date when the pricing rule 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.
37
37
  * @type {string}
38
38
  * @memberof NetworkProcedureCluster
39
39
  */
40
40
  'effective_Date': string;
41
41
  /**
42
42
  *
43
+ * @type {string}
44
+ * @memberof NetworkProcedureCluster
45
+ */
46
+ 'claim_Type'?: string | null;
47
+ /**
48
+ * This option tells the pricing rule to reference pricing received from Context4. If this is unchecked, it allows the User to have the functionality without the Context4 hook. 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
49
  * @type {boolean}
44
50
  * @memberof NetworkProcedureCluster
45
51
  */
46
52
  'context4Fg': boolean;
47
53
  /**
48
- *
54
+ * Date record was first added to the system
49
55
  * @type {string}
50
56
  * @memberof NetworkProcedureCluster
51
57
  */
52
58
  'entry_Date'?: string;
53
59
  /**
54
- *
60
+ * User that first added the record to the system
55
61
  * @type {string}
56
62
  * @memberof NetworkProcedureCluster
57
63
  */
58
64
  'entry_User'?: string | null;
59
65
  /**
60
- *
66
+ * Specifies the fee percentage that is to be tied to the selected procedure cluster. Negative values will apply a discount.
61
67
  * @type {number}
62
68
  * @memberof NetworkProcedureCluster
63
69
  */
64
70
  'fee_Percent'?: number | null;
65
71
  /**
66
- *
72
+ * Date when the pricing rule expires/expired.
67
73
  * @type {string}
68
74
  * @memberof NetworkProcedureCluster
69
75
  */
70
76
  'term_Date'?: string | null;
71
77
  /**
72
- *
78
+ * Date the record was last updated in the system
73
79
  * @type {string}
74
80
  * @memberof NetworkProcedureCluster
75
81
  */
76
82
  'update_Date'?: string;
77
83
  /**
78
- *
84
+ * User that last updated the record in the system
79
85
  * @type {string}
80
86
  * @memberof NetworkProcedureCluster
81
87
  */
@@ -441,7 +441,7 @@ export interface PlanBenefits {
441
441
  */
442
442
  'ltC_Use_Benefit_MBA': boolean;
443
443
  /**
444
- *
444
+ * This is an indicator for whether this PlanBenefit will utilize the Daily Benefit Amount or the Monthly Benefit Amount.
445
445
  * @type {string}
446
446
  * @memberof PlanBenefits
447
447
  */
@@ -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 { PremInvoiceGroupSummary } from './prem-invoice-group-summary';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PremInvoiceGroupSummaryVBAResponse
24
+ */
25
+ export interface PremInvoiceGroupSummaryVBAResponse {
26
+ /**
27
+ *
28
+ * @type {PremInvoiceGroupSummary}
29
+ * @memberof PremInvoiceGroupSummaryVBAResponse
30
+ */
31
+ 'data'?: PremInvoiceGroupSummary;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof PremInvoiceGroupSummaryVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof PremInvoiceGroupSummaryVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,114 @@
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 PremInvoiceGroupSummary
21
+ */
22
+ export interface PremInvoiceGroupSummary {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof PremInvoiceGroupSummary
27
+ */
28
+ 'subscriberCount': number;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof PremInvoiceGroupSummary
33
+ */
34
+ 'paidSubscriberCount': number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof PremInvoiceGroupSummary
39
+ */
40
+ 'dependentCount': number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof PremInvoiceGroupSummary
45
+ */
46
+ 'paidDependentCount': number;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PremInvoiceGroupSummary
51
+ */
52
+ 'memberCount': number;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof PremInvoiceGroupSummary
57
+ */
58
+ 'paidMemberCount': number;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof PremInvoiceGroupSummary
63
+ */
64
+ 'premium': number;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof PremInvoiceGroupSummary
69
+ */
70
+ 'premiumReceived': number;
71
+ /**
72
+ *
73
+ * @type {number}
74
+ * @memberof PremInvoiceGroupSummary
75
+ */
76
+ 'postedPayment': number;
77
+ /**
78
+ *
79
+ * @type {number}
80
+ * @memberof PremInvoiceGroupSummary
81
+ */
82
+ 'unpostedAmount': number;
83
+ /**
84
+ *
85
+ * @type {number}
86
+ * @memberof PremInvoiceGroupSummary
87
+ */
88
+ 'amountDue': number;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof PremInvoiceGroupSummary
93
+ */
94
+ 'headerAdjustment': number;
95
+ /**
96
+ *
97
+ * @type {number}
98
+ * @memberof PremInvoiceGroupSummary
99
+ */
100
+ 'subscriberAdjustment': number;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof PremInvoiceGroupSummary
105
+ */
106
+ 'adjustmentReceived': number;
107
+ /**
108
+ *
109
+ * @type {number}
110
+ * @memberof PremInvoiceGroupSummary
111
+ */
112
+ 'detailAdjustment': number;
113
+ }
114
+
@@ -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 { PremInvoicePaymentExt } from './prem-invoice-payment-ext';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PremInvoicePaymentExtListVBAResponse
24
+ */
25
+ export interface PremInvoicePaymentExtListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<PremInvoicePaymentExt>}
29
+ * @memberof PremInvoicePaymentExtListVBAResponse
30
+ */
31
+ 'data'?: Array<PremInvoicePaymentExt> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof PremInvoicePaymentExtListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof PremInvoicePaymentExtListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,102 @@
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
+ * Similar to the PremInvoicePayment class but has additional computed fields.
19
+ * @export
20
+ * @interface PremInvoicePaymentExt
21
+ */
22
+ export interface PremInvoicePaymentExt {
23
+ /**
24
+ * Invoice the payment is for
25
+ * @type {number}
26
+ * @memberof PremInvoicePaymentExt
27
+ */
28
+ 'invoiceKey'?: number;
29
+ /**
30
+ * Payment that is applied to the invoice
31
+ * @type {number}
32
+ * @memberof PremInvoicePaymentExt
33
+ */
34
+ 'premPaymentKey'?: number;
35
+ /**
36
+ * ID for the Payment
37
+ * @type {string}
38
+ * @memberof PremInvoicePaymentExt
39
+ */
40
+ 'paymentId'?: string | null;
41
+ /**
42
+ * Amount of the Payment
43
+ * @type {number}
44
+ * @memberof PremInvoicePaymentExt
45
+ */
46
+ 'paymentAmount'?: number;
47
+ /**
48
+ * Date of the Payment
49
+ * @type {string}
50
+ * @memberof PremInvoicePaymentExt
51
+ */
52
+ 'paymentDate'?: string | null;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof PremInvoicePaymentExt
57
+ */
58
+ 'invoicePostedPayments'?: number;
59
+ /**
60
+ * Payment posted to the invoice
61
+ * @type {number}
62
+ * @memberof PremInvoicePaymentExt
63
+ */
64
+ 'paymentPosted'?: number;
65
+ /**
66
+ * Date the Payment was Posted to the invoice
67
+ * @type {string}
68
+ * @memberof PremInvoicePaymentExt
69
+ */
70
+ 'paymentPostedDate'?: string | null;
71
+ /**
72
+ * Calculated field that sums the PremInvoiceReceived, PremInvoiceSelfAdminReceived and PremInvoiceAdjReceived.
73
+ * @type {number}
74
+ * @memberof PremInvoicePaymentExt
75
+ */
76
+ 'paymentApplied'?: number;
77
+ /**
78
+ * User that first added the record to the system
79
+ * @type {string}
80
+ * @memberof PremInvoicePaymentExt
81
+ */
82
+ 'entryUser'?: string | null;
83
+ /**
84
+ * Date record was first added to the system
85
+ * @type {string}
86
+ * @memberof PremInvoicePaymentExt
87
+ */
88
+ 'entryDate'?: string;
89
+ /**
90
+ * User that last updated the record in the system
91
+ * @type {string}
92
+ * @memberof PremInvoicePaymentExt
93
+ */
94
+ 'updateUser'?: string | null;
95
+ /**
96
+ * Date the record was last updated in the system
97
+ * @type {string}
98
+ * @memberof PremInvoicePaymentExt
99
+ */
100
+ 'updateDate'?: string;
101
+ }
102
+
@@ -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 { PremInvoiceSlim } from './prem-invoice-slim';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PremInvoiceSlimListVBAResponse
24
+ */
25
+ export interface PremInvoiceSlimListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<PremInvoiceSlim>}
29
+ * @memberof PremInvoiceSlimListVBAResponse
30
+ */
31
+ 'data'?: Array<PremInvoiceSlim> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof PremInvoiceSlimListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof PremInvoiceSlimListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,42 @@
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 PremInvoiceSlim
21
+ */
22
+ export interface PremInvoiceSlim {
23
+ /**
24
+ * Unique identifier for the Invoice
25
+ * @type {number}
26
+ * @memberof PremInvoiceSlim
27
+ */
28
+ 'invoice_Key'?: number;
29
+ /**
30
+ * Number assigned to this Invoice
31
+ * @type {string}
32
+ * @memberof PremInvoiceSlim
33
+ */
34
+ 'invoice_Number'?: string | null;
35
+ /**
36
+ * Date of the Invoice
37
+ * @type {string}
38
+ * @memberof PremInvoiceSlim
39
+ */
40
+ 'invoice_Date'?: string | null;
41
+ }
42
+
@@ -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 { PremRateType } from './prem-rate-type';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PremRateTypeListVBAResponse
24
+ */
25
+ export interface PremRateTypeListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<PremRateType>}
29
+ * @memberof PremRateTypeListVBAResponse
30
+ */
31
+ 'data'?: Array<PremRateType> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof PremRateTypeListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof PremRateTypeListVBAResponse
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 { PremRateType } from './prem-rate-type';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface PremRateTypeVBAResponse
24
+ */
25
+ export interface PremRateTypeVBAResponse {
26
+ /**
27
+ *
28
+ * @type {PremRateType}
29
+ * @memberof PremRateTypeVBAResponse
30
+ */
31
+ 'data'?: PremRateType;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof PremRateTypeVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof PremRateTypeVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,72 @@
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 PremRateType
21
+ */
22
+ export interface PremRateType {
23
+ /**
24
+ * Unique identifier of the Rate Type
25
+ * @type {string}
26
+ * @memberof PremRateType
27
+ */
28
+ 'rate_Type': string;
29
+ /**
30
+ * 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
+ * @type {boolean}
32
+ * @memberof PremRateType
33
+ */
34
+ 'adjustment_Type': boolean;
35
+ /**
36
+ * Description of the Rate Type
37
+ * @type {string}
38
+ * @memberof PremRateType
39
+ */
40
+ 'description'?: string | null;
41
+ /**
42
+ * Date record was first added to the system
43
+ * @type {string}
44
+ * @memberof PremRateType
45
+ */
46
+ 'entry_Date'?: string;
47
+ /**
48
+ * User that first added the record to the system
49
+ * @type {string}
50
+ * @memberof PremRateType
51
+ */
52
+ 'entry_User'?: string | null;
53
+ /**
54
+ * Flag that determines if the Rate Type includes Premiums 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.
55
+ * @type {boolean}
56
+ * @memberof PremRateType
57
+ */
58
+ 'premium_Type': boolean;
59
+ /**
60
+ * Date the record was last updated in the system
61
+ * @type {string}
62
+ * @memberof PremRateType
63
+ */
64
+ 'update_Date'?: string;
65
+ /**
66
+ * User that last updated the record in the system
67
+ * @type {string}
68
+ * @memberof PremRateType
69
+ */
70
+ 'update_User'?: string | null;
71
+ }
72
+
@@ -344,6 +344,12 @@ export interface PremRate {
344
344
  * @memberof PremRate
345
345
  */
346
346
  'new_Hire_Age': boolean;
347
+ /**
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;
347
353
  /**
348
354
  * PremRate_Key of the template rate this rate was created from
349
355
  * @type {number}