@memberjunction/core-entities 0.9.150 → 0.9.151

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.
@@ -12,7 +12,7 @@ import { BaseEntity, EntitySaveOptions } from "@memberjunction/core";
12
12
  export declare class CompanyEntity extends BaseEntity {
13
13
  /**
14
14
  * Loads the Companies record from the database
15
- * @param ID: Number - primary key value to load the Companies record.
15
+ * @param ID: number - primary key value to load the Companies record.
16
16
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
17
17
  * @returns {Promise<boolean>} - true if successful, false otherwise
18
18
  * @public
@@ -21,7 +21,7 @@ export declare class CompanyEntity extends BaseEntity {
21
21
  * @method
22
22
  * @override
23
23
  */
24
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25
25
  /**
26
26
  * * Field Name: ID
27
27
  * * SQL Data Type: int
@@ -87,7 +87,7 @@ export declare class CompanyEntity extends BaseEntity {
87
87
  export declare class EmployeeEntity extends BaseEntity {
88
88
  /**
89
89
  * Loads the Employees record from the database
90
- * @param ID: Number - primary key value to load the Employees record.
90
+ * @param ID: number - primary key value to load the Employees record.
91
91
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
92
92
  * @returns {Promise<boolean>} - true if successful, false otherwise
93
93
  * @public
@@ -96,7 +96,7 @@ export declare class EmployeeEntity extends BaseEntity {
96
96
  * @method
97
97
  * @override
98
98
  */
99
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
99
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
100
100
  /**
101
101
  * * Field Name: ID
102
102
  * * SQL Data Type: int
@@ -222,7 +222,7 @@ export declare class EmployeeEntity extends BaseEntity {
222
222
  export declare class UserFavoriteEntity extends BaseEntity {
223
223
  /**
224
224
  * Loads the User Favorites record from the database
225
- * @param ID: Number - primary key value to load the User Favorites record.
225
+ * @param ID: number - primary key value to load the User Favorites record.
226
226
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
227
227
  * @returns {Promise<boolean>} - true if successful, false otherwise
228
228
  * @public
@@ -231,7 +231,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
231
231
  * @method
232
232
  * @override
233
233
  */
234
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
234
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
235
235
  /**
236
236
  * * Field Name: ID
237
237
  * * SQL Data Type: int
@@ -305,7 +305,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
305
305
  export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
306
306
  /**
307
307
  * Loads the Employee Company Integrations record from the database
308
- * @param ID: Number - primary key value to load the Employee Company Integrations record.
308
+ * @param ID: number - primary key value to load the Employee Company Integrations record.
309
309
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
310
310
  * @returns {Promise<boolean>} - true if successful, false otherwise
311
311
  * @public
@@ -314,7 +314,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
314
314
  * @method
315
315
  * @override
316
316
  */
317
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
317
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
318
318
  /**
319
319
  * Employee Company Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
320
320
  * @public
@@ -388,7 +388,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
388
388
  export declare class EmployeeRoleEntity extends BaseEntity {
389
389
  /**
390
390
  * Loads the Employee Roles record from the database
391
- * @param ID: Number - primary key value to load the Employee Roles record.
391
+ * @param ID: number - primary key value to load the Employee Roles record.
392
392
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
393
393
  * @returns {Promise<boolean>} - true if successful, false otherwise
394
394
  * @public
@@ -397,7 +397,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
397
397
  * @method
398
398
  * @override
399
399
  */
400
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
400
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
401
401
  /**
402
402
  * Employee Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
403
403
  * @public
@@ -463,7 +463,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
463
463
  export declare class EmployeeSkillEntity extends BaseEntity {
464
464
  /**
465
465
  * Loads the Employee Skills record from the database
466
- * @param ID: Number - primary key value to load the Employee Skills record.
466
+ * @param ID: number - primary key value to load the Employee Skills record.
467
467
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
468
468
  * @returns {Promise<boolean>} - true if successful, false otherwise
469
469
  * @public
@@ -472,7 +472,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
472
472
  * @method
473
473
  * @override
474
474
  */
475
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
475
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
476
476
  /**
477
477
  * Employee Skills - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
478
478
  * @public
@@ -538,7 +538,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
538
538
  export declare class RoleEntity extends BaseEntity {
539
539
  /**
540
540
  * Loads the Roles record from the database
541
- * @param ID: Number - primary key value to load the Roles record.
541
+ * @param ID: number - primary key value to load the Roles record.
542
542
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
543
543
  * @returns {Promise<boolean>} - true if successful, false otherwise
544
544
  * @public
@@ -547,7 +547,7 @@ export declare class RoleEntity extends BaseEntity {
547
547
  * @method
548
548
  * @override
549
549
  */
550
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
550
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
551
551
  /**
552
552
  * Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
553
553
  * @public
@@ -615,7 +615,7 @@ export declare class RoleEntity extends BaseEntity {
615
615
  export declare class SkillEntity extends BaseEntity {
616
616
  /**
617
617
  * Loads the Skills record from the database
618
- * @param ID: Number - primary key value to load the Skills record.
618
+ * @param ID: number - primary key value to load the Skills record.
619
619
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
620
620
  * @returns {Promise<boolean>} - true if successful, false otherwise
621
621
  * @public
@@ -624,7 +624,7 @@ export declare class SkillEntity extends BaseEntity {
624
624
  * @method
625
625
  * @override
626
626
  */
627
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
627
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
628
628
  /**
629
629
  * Skills - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
630
630
  * @public
@@ -696,7 +696,7 @@ export declare class SkillEntity extends BaseEntity {
696
696
  export declare class IntegrationURLFormatEntity extends BaseEntity {
697
697
  /**
698
698
  * Loads the Integration URL Formats record from the database
699
- * @param ID: Number - primary key value to load the Integration URL Formats record.
699
+ * @param ID: number - primary key value to load the Integration URL Formats record.
700
700
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
701
701
  * @returns {Promise<boolean>} - true if successful, false otherwise
702
702
  * @public
@@ -705,7 +705,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
705
705
  * @method
706
706
  * @override
707
707
  */
708
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
708
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
709
709
  /**
710
710
  * Integration URL Formats - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
711
711
  * @public
@@ -780,7 +780,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
780
780
  export declare class IntegrationEntity extends BaseEntity {
781
781
  /**
782
782
  * Loads the Integrations record from the database
783
- * @param ID: Number - primary key value to load the Integrations record.
783
+ * @param ID: number - primary key value to load the Integrations record.
784
784
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
785
785
  * @returns {Promise<boolean>} - true if successful, false otherwise
786
786
  * @public
@@ -789,7 +789,7 @@ export declare class IntegrationEntity extends BaseEntity {
789
789
  * @method
790
790
  * @override
791
791
  */
792
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
792
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
793
793
  /**
794
794
  * Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
795
795
  * @public
@@ -881,7 +881,7 @@ export declare class IntegrationEntity extends BaseEntity {
881
881
  export declare class CompanyIntegrationEntity extends BaseEntity {
882
882
  /**
883
883
  * Loads the Company Integrations record from the database
884
- * @param ID: Number - primary key value to load the Company Integrations record.
884
+ * @param ID: number - primary key value to load the Company Integrations record.
885
885
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
886
886
  * @returns {Promise<boolean>} - true if successful, false otherwise
887
887
  * @public
@@ -890,7 +890,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
890
890
  * @method
891
891
  * @override
892
892
  */
893
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
893
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
894
894
  /**
895
895
  * Company Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
896
896
  * @public
@@ -1071,7 +1071,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
1071
1071
  export declare class EntityFieldEntity extends BaseEntity {
1072
1072
  /**
1073
1073
  * Loads the Entity Fields record from the database
1074
- * @param ID: Number - primary key value to load the Entity Fields record.
1074
+ * @param ID: number - primary key value to load the Entity Fields record.
1075
1075
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1076
1076
  * @returns {Promise<boolean>} - true if successful, false otherwise
1077
1077
  * @public
@@ -1080,7 +1080,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1080
1080
  * @method
1081
1081
  * @override
1082
1082
  */
1083
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1083
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1084
1084
  /**
1085
1085
  * * Field Name: ID
1086
1086
  * * SQL Data Type: int
@@ -1423,7 +1423,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1423
1423
  export declare class EntityEntity extends BaseEntity {
1424
1424
  /**
1425
1425
  * Loads the Entities record from the database
1426
- * @param ID: Number - primary key value to load the Entities record.
1426
+ * @param ID: number - primary key value to load the Entities record.
1427
1427
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1428
1428
  * @returns {Promise<boolean>} - true if successful, false otherwise
1429
1429
  * @public
@@ -1432,7 +1432,7 @@ export declare class EntityEntity extends BaseEntity {
1432
1432
  * @method
1433
1433
  * @override
1434
1434
  */
1435
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1435
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1436
1436
  /**
1437
1437
  * * Field Name: ID
1438
1438
  * * SQL Data Type: int
@@ -1790,7 +1790,7 @@ export declare class EntityEntity extends BaseEntity {
1790
1790
  export declare class UserEntity extends BaseEntity {
1791
1791
  /**
1792
1792
  * Loads the Users record from the database
1793
- * @param ID: Number - primary key value to load the Users record.
1793
+ * @param ID: number - primary key value to load the Users record.
1794
1794
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1795
1795
  * @returns {Promise<boolean>} - true if successful, false otherwise
1796
1796
  * @public
@@ -1799,7 +1799,7 @@ export declare class UserEntity extends BaseEntity {
1799
1799
  * @method
1800
1800
  * @override
1801
1801
  */
1802
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1802
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1803
1803
  /**
1804
1804
  * Users - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
1805
1805
  * @public
@@ -1954,7 +1954,7 @@ export declare class UserEntity extends BaseEntity {
1954
1954
  export declare class EntityRelationshipEntity extends BaseEntity {
1955
1955
  /**
1956
1956
  * Loads the Entity Relationships record from the database
1957
- * @param ID: Number - primary key value to load the Entity Relationships record.
1957
+ * @param ID: number - primary key value to load the Entity Relationships record.
1958
1958
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1959
1959
  * @returns {Promise<boolean>} - true if successful, false otherwise
1960
1960
  * @public
@@ -1963,7 +1963,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
1963
1963
  * @method
1964
1964
  * @override
1965
1965
  */
1966
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1966
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1967
1967
  /**
1968
1968
  * * Field Name: ID
1969
1969
  * * SQL Data Type: int
@@ -2158,7 +2158,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2158
2158
  export declare class UserRecordLogEntity extends BaseEntity {
2159
2159
  /**
2160
2160
  * Loads the User Record Logs record from the database
2161
- * @param ID: Number - primary key value to load the User Record Logs record.
2161
+ * @param ID: number - primary key value to load the User Record Logs record.
2162
2162
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2163
2163
  * @returns {Promise<boolean>} - true if successful, false otherwise
2164
2164
  * @public
@@ -2167,7 +2167,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
2167
2167
  * @method
2168
2168
  * @override
2169
2169
  */
2170
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2170
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2171
2171
  /**
2172
2172
  * User Record Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2173
2173
  * @public
@@ -2279,7 +2279,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
2279
2279
  export declare class UserViewEntity extends BaseEntity {
2280
2280
  /**
2281
2281
  * Loads the User Views record from the database
2282
- * @param ID: Number - primary key value to load the User Views record.
2282
+ * @param ID: number - primary key value to load the User Views record.
2283
2283
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2284
2284
  * @returns {Promise<boolean>} - true if successful, false otherwise
2285
2285
  * @public
@@ -2288,7 +2288,7 @@ export declare class UserViewEntity extends BaseEntity {
2288
2288
  * @method
2289
2289
  * @override
2290
2290
  */
2291
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2291
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2292
2292
  /**
2293
2293
  * * Field Name: ID
2294
2294
  * * SQL Data Type: int
@@ -2489,7 +2489,7 @@ export declare class UserViewEntity extends BaseEntity {
2489
2489
  export declare class CompanyIntegrationRunEntity extends BaseEntity {
2490
2490
  /**
2491
2491
  * Loads the Company Integration Runs record from the database
2492
- * @param ID: Number - primary key value to load the Company Integration Runs record.
2492
+ * @param ID: number - primary key value to load the Company Integration Runs record.
2493
2493
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2494
2494
  * @returns {Promise<boolean>} - true if successful, false otherwise
2495
2495
  * @public
@@ -2498,7 +2498,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2498
2498
  * @method
2499
2499
  * @override
2500
2500
  */
2501
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2501
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2502
2502
  /**
2503
2503
  * Company Integration Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2504
2504
  * @public
@@ -2576,7 +2576,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2576
2576
  export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2577
2577
  /**
2578
2578
  * Loads the Company Integration Run Details record from the database
2579
- * @param ID: Number - primary key value to load the Company Integration Run Details record.
2579
+ * @param ID: number - primary key value to load the Company Integration Run Details record.
2580
2580
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2581
2581
  * @returns {Promise<boolean>} - true if successful, false otherwise
2582
2582
  * @public
@@ -2585,7 +2585,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2585
2585
  * @method
2586
2586
  * @override
2587
2587
  */
2588
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2588
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2589
2589
  /**
2590
2590
  * Company Integration Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2591
2591
  * @public
@@ -2675,7 +2675,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2675
2675
  export declare class ErrorLogEntity extends BaseEntity {
2676
2676
  /**
2677
2677
  * Loads the Error Logs record from the database
2678
- * @param ID: Number - primary key value to load the Error Logs record.
2678
+ * @param ID: number - primary key value to load the Error Logs record.
2679
2679
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2680
2680
  * @returns {Promise<boolean>} - true if successful, false otherwise
2681
2681
  * @public
@@ -2684,7 +2684,7 @@ export declare class ErrorLogEntity extends BaseEntity {
2684
2684
  * @method
2685
2685
  * @override
2686
2686
  */
2687
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2687
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2688
2688
  /**
2689
2689
  * Error Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2690
2690
  * @public
@@ -2774,7 +2774,7 @@ export declare class ErrorLogEntity extends BaseEntity {
2774
2774
  export declare class ApplicationEntity extends BaseEntity {
2775
2775
  /**
2776
2776
  * Loads the Applications record from the database
2777
- * @param ID: Number - primary key value to load the Applications record.
2777
+ * @param ID: number - primary key value to load the Applications record.
2778
2778
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2779
2779
  * @returns {Promise<boolean>} - true if successful, false otherwise
2780
2780
  * @public
@@ -2783,7 +2783,7 @@ export declare class ApplicationEntity extends BaseEntity {
2783
2783
  * @method
2784
2784
  * @override
2785
2785
  */
2786
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2786
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2787
2787
  /**
2788
2788
  * Applications - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2789
2789
  * @public
@@ -2838,7 +2838,7 @@ export declare class ApplicationEntity extends BaseEntity {
2838
2838
  export declare class ApplicationEntityEntity extends BaseEntity {
2839
2839
  /**
2840
2840
  * Loads the Application Entities record from the database
2841
- * @param ID: Number - primary key value to load the Application Entities record.
2841
+ * @param ID: number - primary key value to load the Application Entities record.
2842
2842
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2843
2843
  * @returns {Promise<boolean>} - true if successful, false otherwise
2844
2844
  * @public
@@ -2847,7 +2847,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2847
2847
  * @method
2848
2848
  * @override
2849
2849
  */
2850
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2850
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2851
2851
  /**
2852
2852
  * * Field Name: ID
2853
2853
  * * SQL Data Type: int
@@ -2944,7 +2944,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2944
2944
  export declare class EntityPermissionEntity extends BaseEntity {
2945
2945
  /**
2946
2946
  * Loads the Entity Permissions record from the database
2947
- * @param ID: Number - primary key value to load the Entity Permissions record.
2947
+ * @param ID: number - primary key value to load the Entity Permissions record.
2948
2948
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2949
2949
  * @returns {Promise<boolean>} - true if successful, false otherwise
2950
2950
  * @public
@@ -2953,7 +2953,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
2953
2953
  * @method
2954
2954
  * @override
2955
2955
  */
2956
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2956
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2957
2957
  /**
2958
2958
  * * Field Name: ID
2959
2959
  * * SQL Data Type: int
@@ -3101,7 +3101,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
3101
3101
  export declare class UserApplicationEntityEntity extends BaseEntity {
3102
3102
  /**
3103
3103
  * Loads the User Application Entities record from the database
3104
- * @param ID: Number - primary key value to load the User Application Entities record.
3104
+ * @param ID: number - primary key value to load the User Application Entities record.
3105
3105
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3106
3106
  * @returns {Promise<boolean>} - true if successful, false otherwise
3107
3107
  * @public
@@ -3110,7 +3110,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
3110
3110
  * @method
3111
3111
  * @override
3112
3112
  */
3113
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3113
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3114
3114
  /**
3115
3115
  * * Field Name: ID
3116
3116
  * * SQL Data Type: int
@@ -3170,7 +3170,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
3170
3170
  export declare class UserApplicationEntity extends BaseEntity {
3171
3171
  /**
3172
3172
  * Loads the User Applications record from the database
3173
- * @param ID: Number - primary key value to load the User Applications record.
3173
+ * @param ID: number - primary key value to load the User Applications record.
3174
3174
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3175
3175
  * @returns {Promise<boolean>} - true if successful, false otherwise
3176
3176
  * @public
@@ -3179,7 +3179,7 @@ export declare class UserApplicationEntity extends BaseEntity {
3179
3179
  * @method
3180
3180
  * @override
3181
3181
  */
3182
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3182
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3183
3183
  /**
3184
3184
  * User Applications - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3185
3185
  * @public
@@ -3251,7 +3251,7 @@ export declare class UserApplicationEntity extends BaseEntity {
3251
3251
  export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3252
3252
  /**
3253
3253
  * Loads the Company Integration Run API Logs record from the database
3254
- * @param ID: Number - primary key value to load the Company Integration Run API Logs record.
3254
+ * @param ID: number - primary key value to load the Company Integration Run API Logs record.
3255
3255
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3256
3256
  * @returns {Promise<boolean>} - true if successful, false otherwise
3257
3257
  * @public
@@ -3260,7 +3260,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3260
3260
  * @method
3261
3261
  * @override
3262
3262
  */
3263
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3263
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3264
3264
  /**
3265
3265
  * Company Integration Run API Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3266
3266
  * @public
@@ -3332,7 +3332,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3332
3332
  export declare class ListEntity extends BaseEntity {
3333
3333
  /**
3334
3334
  * Loads the Lists record from the database
3335
- * @param ID: Number - primary key value to load the Lists record.
3335
+ * @param ID: number - primary key value to load the Lists record.
3336
3336
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3337
3337
  * @returns {Promise<boolean>} - true if successful, false otherwise
3338
3338
  * @public
@@ -3341,7 +3341,7 @@ export declare class ListEntity extends BaseEntity {
3341
3341
  * @method
3342
3342
  * @override
3343
3343
  */
3344
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3344
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3345
3345
  /**
3346
3346
  * * Field Name: ID
3347
3347
  * * SQL Data Type: int
@@ -3423,7 +3423,7 @@ export declare class ListEntity extends BaseEntity {
3423
3423
  export declare class ListDetailEntity extends BaseEntity {
3424
3424
  /**
3425
3425
  * Loads the List Details record from the database
3426
- * @param ID: Number - primary key value to load the List Details record.
3426
+ * @param ID: number - primary key value to load the List Details record.
3427
3427
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3428
3428
  * @returns {Promise<boolean>} - true if successful, false otherwise
3429
3429
  * @public
@@ -3432,7 +3432,7 @@ export declare class ListDetailEntity extends BaseEntity {
3432
3432
  * @method
3433
3433
  * @override
3434
3434
  */
3435
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3435
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3436
3436
  /**
3437
3437
  * * Field Name: ID
3438
3438
  * * SQL Data Type: int
@@ -3474,7 +3474,7 @@ export declare class ListDetailEntity extends BaseEntity {
3474
3474
  export declare class UserViewRunEntity extends BaseEntity {
3475
3475
  /**
3476
3476
  * Loads the User View Runs record from the database
3477
- * @param ID: Number - primary key value to load the User View Runs record.
3477
+ * @param ID: number - primary key value to load the User View Runs record.
3478
3478
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3479
3479
  * @returns {Promise<boolean>} - true if successful, false otherwise
3480
3480
  * @public
@@ -3483,7 +3483,7 @@ export declare class UserViewRunEntity extends BaseEntity {
3483
3483
  * @method
3484
3484
  * @override
3485
3485
  */
3486
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3486
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3487
3487
  /**
3488
3488
  * User View Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3489
3489
  * @public
@@ -3547,7 +3547,7 @@ export declare class UserViewRunEntity extends BaseEntity {
3547
3547
  export declare class UserViewRunDetailEntity extends BaseEntity {
3548
3548
  /**
3549
3549
  * Loads the User View Run Details record from the database
3550
- * @param ID: Number - primary key value to load the User View Run Details record.
3550
+ * @param ID: number - primary key value to load the User View Run Details record.
3551
3551
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3552
3552
  * @returns {Promise<boolean>} - true if successful, false otherwise
3553
3553
  * @public
@@ -3556,7 +3556,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
3556
3556
  * @method
3557
3557
  * @override
3558
3558
  */
3559
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3559
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3560
3560
  /**
3561
3561
  * User View Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3562
3562
  * @public
@@ -3612,7 +3612,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
3612
3612
  export declare class WorkflowRunEntity extends BaseEntity {
3613
3613
  /**
3614
3614
  * Loads the Workflow Runs record from the database
3615
- * @param ID: Number - primary key value to load the Workflow Runs record.
3615
+ * @param ID: number - primary key value to load the Workflow Runs record.
3616
3616
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3617
3617
  * @returns {Promise<boolean>} - true if successful, false otherwise
3618
3618
  * @public
@@ -3621,7 +3621,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
3621
3621
  * @method
3622
3622
  * @override
3623
3623
  */
3624
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3624
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3625
3625
  /**
3626
3626
  * Workflow Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3627
3627
  * @public
@@ -3704,7 +3704,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
3704
3704
  export declare class WorkflowEntity extends BaseEntity {
3705
3705
  /**
3706
3706
  * Loads the Workflows record from the database
3707
- * @param ID: Number - primary key value to load the Workflows record.
3707
+ * @param ID: number - primary key value to load the Workflows record.
3708
3708
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3709
3709
  * @returns {Promise<boolean>} - true if successful, false otherwise
3710
3710
  * @public
@@ -3713,7 +3713,7 @@ export declare class WorkflowEntity extends BaseEntity {
3713
3713
  * @method
3714
3714
  * @override
3715
3715
  */
3716
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3716
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3717
3717
  /**
3718
3718
  * Workflows - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3719
3719
  * @public
@@ -3791,7 +3791,7 @@ export declare class WorkflowEntity extends BaseEntity {
3791
3791
  export declare class WorkflowEngineEntity extends BaseEntity {
3792
3792
  /**
3793
3793
  * Loads the Workflow Engines record from the database
3794
- * @param ID: Number - primary key value to load the Workflow Engines record.
3794
+ * @param ID: number - primary key value to load the Workflow Engines record.
3795
3795
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3796
3796
  * @returns {Promise<boolean>} - true if successful, false otherwise
3797
3797
  * @public
@@ -3800,7 +3800,7 @@ export declare class WorkflowEngineEntity extends BaseEntity {
3800
3800
  * @method
3801
3801
  * @override
3802
3802
  */
3803
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3803
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3804
3804
  /**
3805
3805
  * Workflow Engines - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3806
3806
  * @public
@@ -3869,7 +3869,7 @@ export declare class WorkflowEngineEntity extends BaseEntity {
3869
3869
  export declare class RecordChangeEntity extends BaseEntity {
3870
3870
  /**
3871
3871
  * Loads the Record Changes record from the database
3872
- * @param ID: Number - primary key value to load the Record Changes record.
3872
+ * @param ID: number - primary key value to load the Record Changes record.
3873
3873
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3874
3874
  * @returns {Promise<boolean>} - true if successful, false otherwise
3875
3875
  * @public
@@ -3878,7 +3878,7 @@ export declare class RecordChangeEntity extends BaseEntity {
3878
3878
  * @method
3879
3879
  * @override
3880
3880
  */
3881
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3881
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3882
3882
  /**
3883
3883
  * Record Changes - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3884
3884
  * @public
@@ -3984,7 +3984,7 @@ export declare class RecordChangeEntity extends BaseEntity {
3984
3984
  export declare class UserRoleEntity extends BaseEntity {
3985
3985
  /**
3986
3986
  * Loads the User Roles record from the database
3987
- * @param ID: Number - primary key value to load the User Roles record.
3987
+ * @param ID: number - primary key value to load the User Roles record.
3988
3988
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3989
3989
  * @returns {Promise<boolean>} - true if successful, false otherwise
3990
3990
  * @public
@@ -3993,7 +3993,7 @@ export declare class UserRoleEntity extends BaseEntity {
3993
3993
  * @method
3994
3994
  * @override
3995
3995
  */
3996
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3996
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3997
3997
  /**
3998
3998
  * User Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3999
3999
  * @public
@@ -4059,7 +4059,7 @@ export declare class UserRoleEntity extends BaseEntity {
4059
4059
  export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4060
4060
  /**
4061
4061
  * Loads the Row Level Security Filters record from the database
4062
- * @param ID: Number - primary key value to load the Row Level Security Filters record.
4062
+ * @param ID: number - primary key value to load the Row Level Security Filters record.
4063
4063
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4064
4064
  * @returns {Promise<boolean>} - true if successful, false otherwise
4065
4065
  * @public
@@ -4068,7 +4068,7 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4068
4068
  * @method
4069
4069
  * @override
4070
4070
  */
4071
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4071
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4072
4072
  /**
4073
4073
  * Row Level Security Filters - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4074
4074
  * @public
@@ -4142,7 +4142,7 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4142
4142
  export declare class AuditLogEntity extends BaseEntity {
4143
4143
  /**
4144
4144
  * Loads the Audit Logs record from the database
4145
- * @param ID: Number - primary key value to load the Audit Logs record.
4145
+ * @param ID: number - primary key value to load the Audit Logs record.
4146
4146
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4147
4147
  * @returns {Promise<boolean>} - true if successful, false otherwise
4148
4148
  * @public
@@ -4151,7 +4151,7 @@ export declare class AuditLogEntity extends BaseEntity {
4151
4151
  * @method
4152
4152
  * @override
4153
4153
  */
4154
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4154
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4155
4155
  /**
4156
4156
  * Audit Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4157
4157
  * @public
@@ -4261,7 +4261,7 @@ export declare class AuditLogEntity extends BaseEntity {
4261
4261
  export declare class AuthorizationEntity extends BaseEntity {
4262
4262
  /**
4263
4263
  * Loads the Authorizations record from the database
4264
- * @param ID: Number - primary key value to load the Authorizations record.
4264
+ * @param ID: number - primary key value to load the Authorizations record.
4265
4265
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4266
4266
  * @returns {Promise<boolean>} - true if successful, false otherwise
4267
4267
  * @public
@@ -4270,7 +4270,7 @@ export declare class AuthorizationEntity extends BaseEntity {
4270
4270
  * @method
4271
4271
  * @override
4272
4272
  */
4273
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4273
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4274
4274
  /**
4275
4275
  * Authorizations - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4276
4276
  * @public
@@ -4361,7 +4361,7 @@ export declare class AuthorizationEntity extends BaseEntity {
4361
4361
  export declare class AuthorizationRoleEntity extends BaseEntity {
4362
4362
  /**
4363
4363
  * Loads the Authorization Roles record from the database
4364
- * @param ID: Number - primary key value to load the Authorization Roles record.
4364
+ * @param ID: number - primary key value to load the Authorization Roles record.
4365
4365
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4366
4366
  * @returns {Promise<boolean>} - true if successful, false otherwise
4367
4367
  * @public
@@ -4370,7 +4370,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
4370
4370
  * @method
4371
4371
  * @override
4372
4372
  */
4373
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4373
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4374
4374
  /**
4375
4375
  * Authorization Roles - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4376
4376
  * @public
@@ -4461,7 +4461,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
4461
4461
  export declare class AuditLogTypeEntity extends BaseEntity {
4462
4462
  /**
4463
4463
  * Loads the Audit Log Types record from the database
4464
- * @param ID: Number - primary key value to load the Audit Log Types record.
4464
+ * @param ID: number - primary key value to load the Audit Log Types record.
4465
4465
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4466
4466
  * @returns {Promise<boolean>} - true if successful, false otherwise
4467
4467
  * @public
@@ -4470,7 +4470,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4470
4470
  * @method
4471
4471
  * @override
4472
4472
  */
4473
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4473
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4474
4474
  /**
4475
4475
  * Audit Log Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4476
4476
  * @public
@@ -4559,7 +4559,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4559
4559
  export declare class EntityFieldValueEntity extends BaseEntity {
4560
4560
  /**
4561
4561
  * Loads the Entity Field Values record from the database
4562
- * @param ID: Number - primary key value to load the Entity Field Values record.
4562
+ * @param ID: number - primary key value to load the Entity Field Values record.
4563
4563
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4564
4564
  * @returns {Promise<boolean>} - true if successful, false otherwise
4565
4565
  * @public
@@ -4568,7 +4568,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
4568
4568
  * @method
4569
4569
  * @override
4570
4570
  */
4571
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4571
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4572
4572
  /**
4573
4573
  * Entity Field Values - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4574
4574
  * @public
@@ -4671,7 +4671,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
4671
4671
  export declare class AIModelEntity extends BaseEntity {
4672
4672
  /**
4673
4673
  * Loads the AI Models record from the database
4674
- * @param ID: Number - primary key value to load the AI Models record.
4674
+ * @param ID: number - primary key value to load the AI Models record.
4675
4675
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4676
4676
  * @returns {Promise<boolean>} - true if successful, false otherwise
4677
4677
  * @public
@@ -4680,7 +4680,7 @@ export declare class AIModelEntity extends BaseEntity {
4680
4680
  * @method
4681
4681
  * @override
4682
4682
  */
4683
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4683
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4684
4684
  /**
4685
4685
  * AI Models - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4686
4686
  * @public
@@ -4775,7 +4775,7 @@ export declare class AIModelEntity extends BaseEntity {
4775
4775
  export declare class AIActionEntity extends BaseEntity {
4776
4776
  /**
4777
4777
  * Loads the AI Actions record from the database
4778
- * @param ID: Number - primary key value to load the AI Actions record.
4778
+ * @param ID: number - primary key value to load the AI Actions record.
4779
4779
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4780
4780
  * @returns {Promise<boolean>} - true if successful, false otherwise
4781
4781
  * @public
@@ -4784,7 +4784,7 @@ export declare class AIActionEntity extends BaseEntity {
4784
4784
  * @method
4785
4785
  * @override
4786
4786
  */
4787
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4787
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4788
4788
  /**
4789
4789
  * AI Actions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4790
4790
  * @public
@@ -4871,7 +4871,7 @@ export declare class AIActionEntity extends BaseEntity {
4871
4871
  export declare class AIModelActionEntity extends BaseEntity {
4872
4872
  /**
4873
4873
  * Loads the AI Model Actions record from the database
4874
- * @param ID: Number - primary key value to load the AI Model Actions record.
4874
+ * @param ID: number - primary key value to load the AI Model Actions record.
4875
4875
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4876
4876
  * @returns {Promise<boolean>} - true if successful, false otherwise
4877
4877
  * @public
@@ -4880,7 +4880,7 @@ export declare class AIModelActionEntity extends BaseEntity {
4880
4880
  * @method
4881
4881
  * @override
4882
4882
  */
4883
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4883
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4884
4884
  /**
4885
4885
  * AI Model Actions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4886
4886
  * @public
@@ -4960,7 +4960,7 @@ export declare class AIModelActionEntity extends BaseEntity {
4960
4960
  export declare class EntityAIActionEntity extends BaseEntity {
4961
4961
  /**
4962
4962
  * Loads the Entity AI Actions record from the database
4963
- * @param ID: Number - primary key value to load the Entity AI Actions record.
4963
+ * @param ID: number - primary key value to load the Entity AI Actions record.
4964
4964
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4965
4965
  * @returns {Promise<boolean>} - true if successful, false otherwise
4966
4966
  * @public
@@ -4969,7 +4969,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
4969
4969
  * @method
4970
4970
  * @override
4971
4971
  */
4972
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4972
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4973
4973
  /**
4974
4974
  * Entity AI Actions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4975
4975
  * @public
@@ -5114,7 +5114,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
5114
5114
  export declare class AIModelTypeEntity extends BaseEntity {
5115
5115
  /**
5116
5116
  * Loads the AI Model Types record from the database
5117
- * @param ID: Number - primary key value to load the AI Model Types record.
5117
+ * @param ID: number - primary key value to load the AI Model Types record.
5118
5118
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5119
5119
  * @returns {Promise<boolean>} - true if successful, false otherwise
5120
5120
  * @public
@@ -5123,7 +5123,7 @@ export declare class AIModelTypeEntity extends BaseEntity {
5123
5123
  * @method
5124
5124
  * @override
5125
5125
  */
5126
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5126
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5127
5127
  /**
5128
5128
  * AI Model Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
5129
5129
  * @public
@@ -5167,7 +5167,7 @@ export declare class AIModelTypeEntity extends BaseEntity {
5167
5167
  export declare class QueueTypeEntity extends BaseEntity {
5168
5168
  /**
5169
5169
  * Loads the Queue Types record from the database
5170
- * @param ID: Number - primary key value to load the Queue Types record.
5170
+ * @param ID: number - primary key value to load the Queue Types record.
5171
5171
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5172
5172
  * @returns {Promise<boolean>} - true if successful, false otherwise
5173
5173
  * @public
@@ -5176,7 +5176,7 @@ export declare class QueueTypeEntity extends BaseEntity {
5176
5176
  * @method
5177
5177
  * @override
5178
5178
  */
5179
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5179
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5180
5180
  /**
5181
5181
  * Queue Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5182
5182
  * @public
@@ -5251,7 +5251,7 @@ export declare class QueueTypeEntity extends BaseEntity {
5251
5251
  export declare class QueueEntity extends BaseEntity {
5252
5252
  /**
5253
5253
  * Loads the Queues record from the database
5254
- * @param ID: Number - primary key value to load the Queues record.
5254
+ * @param ID: number - primary key value to load the Queues record.
5255
5255
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5256
5256
  * @returns {Promise<boolean>} - true if successful, false otherwise
5257
5257
  * @public
@@ -5260,7 +5260,7 @@ export declare class QueueEntity extends BaseEntity {
5260
5260
  * @method
5261
5261
  * @override
5262
5262
  */
5263
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5263
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5264
5264
  /**
5265
5265
  * Queues - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
5266
5266
  * @public
@@ -5425,7 +5425,7 @@ export declare class QueueEntity extends BaseEntity {
5425
5425
  export declare class QueueTaskEntity extends BaseEntity {
5426
5426
  /**
5427
5427
  * Loads the Queue Tasks record from the database
5428
- * @param ID: Number - primary key value to load the Queue Tasks record.
5428
+ * @param ID: number - primary key value to load the Queue Tasks record.
5429
5429
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5430
5430
  * @returns {Promise<boolean>} - true if successful, false otherwise
5431
5431
  * @public
@@ -5434,7 +5434,7 @@ export declare class QueueTaskEntity extends BaseEntity {
5434
5434
  * @method
5435
5435
  * @override
5436
5436
  */
5437
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5437
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5438
5438
  /**
5439
5439
  * Queue Tasks - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
5440
5440
  * @public
@@ -5529,7 +5529,7 @@ export declare class QueueTaskEntity extends BaseEntity {
5529
5529
  export declare class DashboardEntity extends BaseEntity {
5530
5530
  /**
5531
5531
  * Loads the Dashboards record from the database
5532
- * @param ID: Number - primary key value to load the Dashboards record.
5532
+ * @param ID: number - primary key value to load the Dashboards record.
5533
5533
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5534
5534
  * @returns {Promise<boolean>} - true if successful, false otherwise
5535
5535
  * @public
@@ -5538,7 +5538,7 @@ export declare class DashboardEntity extends BaseEntity {
5538
5538
  * @method
5539
5539
  * @override
5540
5540
  */
5541
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5541
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5542
5542
  /**
5543
5543
  * * Field Name: ID
5544
5544
  * * Display Name: ID
@@ -5608,7 +5608,7 @@ export declare class DashboardEntity extends BaseEntity {
5608
5608
  export declare class OutputTriggerTypeEntity extends BaseEntity {
5609
5609
  /**
5610
5610
  * Loads the Output Trigger Types record from the database
5611
- * @param ID: Number - primary key value to load the Output Trigger Types record.
5611
+ * @param ID: number - primary key value to load the Output Trigger Types record.
5612
5612
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5613
5613
  * @returns {Promise<boolean>} - true if successful, false otherwise
5614
5614
  * @public
@@ -5617,7 +5617,7 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
5617
5617
  * @method
5618
5618
  * @override
5619
5619
  */
5620
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5620
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5621
5621
  /**
5622
5622
  * Output Trigger Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5623
5623
  * @public
@@ -5670,7 +5670,7 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
5670
5670
  export declare class OutputFormatTypeEntity extends BaseEntity {
5671
5671
  /**
5672
5672
  * Loads the Output Format Types record from the database
5673
- * @param ID: Number - primary key value to load the Output Format Types record.
5673
+ * @param ID: number - primary key value to load the Output Format Types record.
5674
5674
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5675
5675
  * @returns {Promise<boolean>} - true if successful, false otherwise
5676
5676
  * @public
@@ -5679,7 +5679,7 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
5679
5679
  * @method
5680
5680
  * @override
5681
5681
  */
5682
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5682
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5683
5683
  /**
5684
5684
  * Output Format Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5685
5685
  * @public
@@ -5739,7 +5739,7 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
5739
5739
  export declare class OutputDeliveryTypeEntity extends BaseEntity {
5740
5740
  /**
5741
5741
  * Loads the Output Delivery Types record from the database
5742
- * @param ID: Number - primary key value to load the Output Delivery Types record.
5742
+ * @param ID: number - primary key value to load the Output Delivery Types record.
5743
5743
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5744
5744
  * @returns {Promise<boolean>} - true if successful, false otherwise
5745
5745
  * @public
@@ -5748,7 +5748,7 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
5748
5748
  * @method
5749
5749
  * @override
5750
5750
  */
5751
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5751
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5752
5752
  /**
5753
5753
  * Output Delivery Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5754
5754
  * @public
@@ -5801,7 +5801,7 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
5801
5801
  export declare class ReportEntity extends BaseEntity {
5802
5802
  /**
5803
5803
  * Loads the Reports record from the database
5804
- * @param ID: Number - primary key value to load the Reports record.
5804
+ * @param ID: number - primary key value to load the Reports record.
5805
5805
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5806
5806
  * @returns {Promise<boolean>} - true if successful, false otherwise
5807
5807
  * @public
@@ -5810,7 +5810,7 @@ export declare class ReportEntity extends BaseEntity {
5810
5810
  * @method
5811
5811
  * @override
5812
5812
  */
5813
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5813
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5814
5814
  /**
5815
5815
  * * Field Name: ID
5816
5816
  * * Display Name: ID
@@ -6016,7 +6016,7 @@ export declare class ReportEntity extends BaseEntity {
6016
6016
  export declare class ReportSnapshotEntity extends BaseEntity {
6017
6017
  /**
6018
6018
  * Loads the Report Snapshots record from the database
6019
- * @param ID: Number - primary key value to load the Report Snapshots record.
6019
+ * @param ID: number - primary key value to load the Report Snapshots record.
6020
6020
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6021
6021
  * @returns {Promise<boolean>} - true if successful, false otherwise
6022
6022
  * @public
@@ -6025,7 +6025,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6025
6025
  * @method
6026
6026
  * @override
6027
6027
  */
6028
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6028
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6029
6029
  /**
6030
6030
  * * Field Name: ID
6031
6031
  * * Display Name: ID
@@ -6088,7 +6088,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6088
6088
  export declare class ResourceTypeEntity extends BaseEntity {
6089
6089
  /**
6090
6090
  * Loads the Resource Types record from the database
6091
- * @param ID: Number - primary key value to load the Resource Types record.
6091
+ * @param ID: number - primary key value to load the Resource Types record.
6092
6092
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6093
6093
  * @returns {Promise<boolean>} - true if successful, false otherwise
6094
6094
  * @public
@@ -6097,7 +6097,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
6097
6097
  * @method
6098
6098
  * @override
6099
6099
  */
6100
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6100
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6101
6101
  /**
6102
6102
  * Resource Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6103
6103
  * @public
@@ -6192,7 +6192,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
6192
6192
  export declare class TagEntity extends BaseEntity {
6193
6193
  /**
6194
6194
  * Loads the Tags record from the database
6195
- * @param ID: Number - primary key value to load the Tags record.
6195
+ * @param ID: number - primary key value to load the Tags record.
6196
6196
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6197
6197
  * @returns {Promise<boolean>} - true if successful, false otherwise
6198
6198
  * @public
@@ -6201,7 +6201,7 @@ export declare class TagEntity extends BaseEntity {
6201
6201
  * @method
6202
6202
  * @override
6203
6203
  */
6204
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6204
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6205
6205
  /**
6206
6206
  * Tags - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6207
6207
  * @public
@@ -6275,7 +6275,7 @@ export declare class TagEntity extends BaseEntity {
6275
6275
  export declare class TaggedItemEntity extends BaseEntity {
6276
6276
  /**
6277
6277
  * Loads the Tagged Items record from the database
6278
- * @param ID: Number - primary key value to load the Tagged Items record.
6278
+ * @param ID: number - primary key value to load the Tagged Items record.
6279
6279
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6280
6280
  * @returns {Promise<boolean>} - true if successful, false otherwise
6281
6281
  * @public
@@ -6284,7 +6284,7 @@ export declare class TaggedItemEntity extends BaseEntity {
6284
6284
  * @method
6285
6285
  * @override
6286
6286
  */
6287
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6287
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6288
6288
  /**
6289
6289
  * Tagged Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6290
6290
  * @public
@@ -6351,7 +6351,7 @@ export declare class TaggedItemEntity extends BaseEntity {
6351
6351
  export declare class WorkspaceEntity extends BaseEntity {
6352
6352
  /**
6353
6353
  * Loads the Workspaces record from the database
6354
- * @param ID: Number - primary key value to load the Workspaces record.
6354
+ * @param ID: number - primary key value to load the Workspaces record.
6355
6355
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6356
6356
  * @returns {Promise<boolean>} - true if successful, false otherwise
6357
6357
  * @public
@@ -6360,7 +6360,7 @@ export declare class WorkspaceEntity extends BaseEntity {
6360
6360
  * @method
6361
6361
  * @override
6362
6362
  */
6363
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6363
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6364
6364
  /**
6365
6365
  * * Field Name: ID
6366
6366
  * * Display Name: ID
@@ -6409,7 +6409,7 @@ export declare class WorkspaceEntity extends BaseEntity {
6409
6409
  export declare class WorkspaceItemEntity extends BaseEntity {
6410
6410
  /**
6411
6411
  * Loads the Workspace Items record from the database
6412
- * @param ID: Number - primary key value to load the Workspace Items record.
6412
+ * @param ID: number - primary key value to load the Workspace Items record.
6413
6413
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6414
6414
  * @returns {Promise<boolean>} - true if successful, false otherwise
6415
6415
  * @public
@@ -6418,7 +6418,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6418
6418
  * @method
6419
6419
  * @override
6420
6420
  */
6421
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6421
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6422
6422
  /**
6423
6423
  * * Field Name: ID
6424
6424
  * * Display Name: ID
@@ -6502,7 +6502,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6502
6502
  export declare class DatasetEntity extends BaseEntity {
6503
6503
  /**
6504
6504
  * Loads the Datasets record from the database
6505
- * @param ID: Number - primary key value to load the Datasets record.
6505
+ * @param ID: number - primary key value to load the Datasets record.
6506
6506
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6507
6507
  * @returns {Promise<boolean>} - true if successful, false otherwise
6508
6508
  * @public
@@ -6511,7 +6511,7 @@ export declare class DatasetEntity extends BaseEntity {
6511
6511
  * @method
6512
6512
  * @override
6513
6513
  */
6514
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6514
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6515
6515
  /**
6516
6516
  * Datasets - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6517
6517
  * @public
@@ -6578,7 +6578,7 @@ export declare class DatasetEntity extends BaseEntity {
6578
6578
  export declare class DatasetItemEntity extends BaseEntity {
6579
6579
  /**
6580
6580
  * Loads the Dataset Items record from the database
6581
- * @param ID: Number - primary key value to load the Dataset Items record.
6581
+ * @param ID: number - primary key value to load the Dataset Items record.
6582
6582
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6583
6583
  * @returns {Promise<boolean>} - true if successful, false otherwise
6584
6584
  * @public
@@ -6587,7 +6587,7 @@ export declare class DatasetItemEntity extends BaseEntity {
6587
6587
  * @method
6588
6588
  * @override
6589
6589
  */
6590
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6590
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6591
6591
  /**
6592
6592
  * Dataset Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6593
6593
  * @public
@@ -6698,7 +6698,7 @@ export declare class DatasetItemEntity extends BaseEntity {
6698
6698
  export declare class ConversationDetailEntity extends BaseEntity {
6699
6699
  /**
6700
6700
  * Loads the Conversation Details record from the database
6701
- * @param ID: Number - primary key value to load the Conversation Details record.
6701
+ * @param ID: number - primary key value to load the Conversation Details record.
6702
6702
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6703
6703
  * @returns {Promise<boolean>} - true if successful, false otherwise
6704
6704
  * @public
@@ -6707,7 +6707,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
6707
6707
  * @method
6708
6708
  * @override
6709
6709
  */
6710
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6710
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6711
6711
  /**
6712
6712
  * * Field Name: ID
6713
6713
  * * Display Name: ID
@@ -6793,7 +6793,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
6793
6793
  export declare class ConversationEntity extends BaseEntity {
6794
6794
  /**
6795
6795
  * Loads the Conversations record from the database
6796
- * @param ID: Number - primary key value to load the Conversations record.
6796
+ * @param ID: number - primary key value to load the Conversations record.
6797
6797
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6798
6798
  * @returns {Promise<boolean>} - true if successful, false otherwise
6799
6799
  * @public
@@ -6802,7 +6802,7 @@ export declare class ConversationEntity extends BaseEntity {
6802
6802
  * @method
6803
6803
  * @override
6804
6804
  */
6805
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6805
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6806
6806
  /**
6807
6807
  * * Field Name: ID
6808
6808
  * * Display Name: ID
@@ -6916,7 +6916,7 @@ export declare class ConversationEntity extends BaseEntity {
6916
6916
  export declare class UserNotificationEntity extends BaseEntity {
6917
6917
  /**
6918
6918
  * Loads the User Notifications record from the database
6919
- * @param ID: Number - primary key value to load the User Notifications record.
6919
+ * @param ID: number - primary key value to load the User Notifications record.
6920
6920
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6921
6921
  * @returns {Promise<boolean>} - true if successful, false otherwise
6922
6922
  * @public
@@ -6925,7 +6925,7 @@ export declare class UserNotificationEntity extends BaseEntity {
6925
6925
  * @method
6926
6926
  * @override
6927
6927
  */
6928
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6928
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6929
6929
  /**
6930
6930
  * User Notifications - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
6931
6931
  * @public
@@ -7033,7 +7033,7 @@ export declare class UserNotificationEntity extends BaseEntity {
7033
7033
  export declare class SchemaInfoEntity extends BaseEntity {
7034
7034
  /**
7035
7035
  * Loads the Schema Info record from the database
7036
- * @param ID: Number - primary key value to load the Schema Info record.
7036
+ * @param ID: number - primary key value to load the Schema Info record.
7037
7037
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7038
7038
  * @returns {Promise<boolean>} - true if successful, false otherwise
7039
7039
  * @public
@@ -7042,7 +7042,7 @@ export declare class SchemaInfoEntity extends BaseEntity {
7042
7042
  * @method
7043
7043
  * @override
7044
7044
  */
7045
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7045
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7046
7046
  /**
7047
7047
  * Schema Info - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7048
7048
  * @public
@@ -7114,7 +7114,7 @@ export declare class SchemaInfoEntity extends BaseEntity {
7114
7114
  export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7115
7115
  /**
7116
7116
  * Loads the Company Integration Record Maps record from the database
7117
- * @param ID: Number - primary key value to load the Company Integration Record Maps record.
7117
+ * @param ID: number - primary key value to load the Company Integration Record Maps record.
7118
7118
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7119
7119
  * @returns {Promise<boolean>} - true if successful, false otherwise
7120
7120
  * @public
@@ -7123,7 +7123,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7123
7123
  * @method
7124
7124
  * @override
7125
7125
  */
7126
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7126
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7127
7127
  /**
7128
7128
  * Company Integration Record Maps - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7129
7129
  * @public
@@ -7196,7 +7196,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7196
7196
  export declare class RecordMergeLogEntity extends BaseEntity {
7197
7197
  /**
7198
7198
  * Loads the Record Merge Logs record from the database
7199
- * @param ID: Number - primary key value to load the Record Merge Logs record.
7199
+ * @param ID: number - primary key value to load the Record Merge Logs record.
7200
7200
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7201
7201
  * @returns {Promise<boolean>} - true if successful, false otherwise
7202
7202
  * @public
@@ -7205,7 +7205,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7205
7205
  * @method
7206
7206
  * @override
7207
7207
  */
7208
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7208
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7209
7209
  /**
7210
7210
  * Record Merge Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7211
7211
  * @public
@@ -7336,7 +7336,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7336
7336
  export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7337
7337
  /**
7338
7338
  * Loads the Record Merge Deletion Logs record from the database
7339
- * @param ID: Number - primary key value to load the Record Merge Deletion Logs record.
7339
+ * @param ID: number - primary key value to load the Record Merge Deletion Logs record.
7340
7340
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7341
7341
  * @returns {Promise<boolean>} - true if successful, false otherwise
7342
7342
  * @public
@@ -7345,7 +7345,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7345
7345
  * @method
7346
7346
  * @override
7347
7347
  */
7348
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7348
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7349
7349
  /**
7350
7350
  * Record Merge Deletion Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7351
7351
  * @public
@@ -7419,7 +7419,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7419
7419
  export declare class QueryFieldEntity extends BaseEntity {
7420
7420
  /**
7421
7421
  * Loads the Query Fields record from the database
7422
- * @param ID: Number - primary key value to load the Query Fields record.
7422
+ * @param ID: number - primary key value to load the Query Fields record.
7423
7423
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7424
7424
  * @returns {Promise<boolean>} - true if successful, false otherwise
7425
7425
  * @public
@@ -7428,7 +7428,7 @@ export declare class QueryFieldEntity extends BaseEntity {
7428
7428
  * @method
7429
7429
  * @override
7430
7430
  */
7431
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7431
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7432
7432
  /**
7433
7433
  * Query Fields - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7434
7434
  * @public
@@ -7567,7 +7567,7 @@ export declare class QueryFieldEntity extends BaseEntity {
7567
7567
  export declare class QueryCategoryEntity extends BaseEntity {
7568
7568
  /**
7569
7569
  * Loads the Query Categories record from the database
7570
- * @param ID: Number - primary key value to load the Query Categories record.
7570
+ * @param ID: number - primary key value to load the Query Categories record.
7571
7571
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7572
7572
  * @returns {Promise<boolean>} - true if successful, false otherwise
7573
7573
  * @public
@@ -7576,7 +7576,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
7576
7576
  * @method
7577
7577
  * @override
7578
7578
  */
7579
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7579
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7580
7580
  /**
7581
7581
  * Query Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7582
7582
  * @public
@@ -7648,7 +7648,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
7648
7648
  export declare class QueryEntity extends BaseEntity {
7649
7649
  /**
7650
7650
  * Loads the Queries record from the database
7651
- * @param ID: Number - primary key value to load the Queries record.
7651
+ * @param ID: number - primary key value to load the Queries record.
7652
7652
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7653
7653
  * @returns {Promise<boolean>} - true if successful, false otherwise
7654
7654
  * @public
@@ -7657,7 +7657,7 @@ export declare class QueryEntity extends BaseEntity {
7657
7657
  * @method
7658
7658
  * @override
7659
7659
  */
7660
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7660
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7661
7661
  /**
7662
7662
  * Queries - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7663
7663
  * @public
@@ -7766,7 +7766,7 @@ export declare class QueryEntity extends BaseEntity {
7766
7766
  export declare class QueryPermissionEntity extends BaseEntity {
7767
7767
  /**
7768
7768
  * Loads the Query Permissions record from the database
7769
- * @param ID: Number - primary key value to load the Query Permissions record.
7769
+ * @param ID: number - primary key value to load the Query Permissions record.
7770
7770
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7771
7771
  * @returns {Promise<boolean>} - true if successful, false otherwise
7772
7772
  * @public
@@ -7775,7 +7775,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
7775
7775
  * @method
7776
7776
  * @override
7777
7777
  */
7778
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7778
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7779
7779
  /**
7780
7780
  * Query Permissions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7781
7781
  * @public
@@ -7835,7 +7835,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
7835
7835
  export declare class VectorIndexEntity extends BaseEntity {
7836
7836
  /**
7837
7837
  * Loads the Vector Indexes record from the database
7838
- * @param ID: Number - primary key value to load the Vector Indexes record.
7838
+ * @param ID: number - primary key value to load the Vector Indexes record.
7839
7839
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7840
7840
  * @returns {Promise<boolean>} - true if successful, false otherwise
7841
7841
  * @public
@@ -7844,7 +7844,7 @@ export declare class VectorIndexEntity extends BaseEntity {
7844
7844
  * @method
7845
7845
  * @override
7846
7846
  */
7847
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7847
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7848
7848
  /**
7849
7849
  * Vector Indexes - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7850
7850
  * @public
@@ -7930,7 +7930,7 @@ export declare class VectorIndexEntity extends BaseEntity {
7930
7930
  export declare class EntityDocumentTypeEntity extends BaseEntity {
7931
7931
  /**
7932
7932
  * Loads the Entity Document Types record from the database
7933
- * @param ID: Number - primary key value to load the Entity Document Types record.
7933
+ * @param ID: number - primary key value to load the Entity Document Types record.
7934
7934
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7935
7935
  * @returns {Promise<boolean>} - true if successful, false otherwise
7936
7936
  * @public
@@ -7939,7 +7939,7 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
7939
7939
  * @method
7940
7940
  * @override
7941
7941
  */
7942
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7942
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7943
7943
  /**
7944
7944
  * Entity Document Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7945
7945
  * @public
@@ -7997,7 +7997,7 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
7997
7997
  export declare class EntityDocumentRunEntity extends BaseEntity {
7998
7998
  /**
7999
7999
  * Loads the Entity Document Runs record from the database
8000
- * @param ID: Number - primary key value to load the Entity Document Runs record.
8000
+ * @param ID: number - primary key value to load the Entity Document Runs record.
8001
8001
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8002
8002
  * @returns {Promise<boolean>} - true if successful, false otherwise
8003
8003
  * @public
@@ -8006,7 +8006,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
8006
8006
  * @method
8007
8007
  * @override
8008
8008
  */
8009
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8009
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8010
8010
  /**
8011
8011
  * Entity Document Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8012
8012
  * @public
@@ -8087,7 +8087,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
8087
8087
  export declare class VectorDatabaseEntity extends BaseEntity {
8088
8088
  /**
8089
8089
  * Loads the Vector Databases record from the database
8090
- * @param ID: Number - primary key value to load the Vector Databases record.
8090
+ * @param ID: number - primary key value to load the Vector Databases record.
8091
8091
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8092
8092
  * @returns {Promise<boolean>} - true if successful, false otherwise
8093
8093
  * @public
@@ -8096,7 +8096,7 @@ export declare class VectorDatabaseEntity extends BaseEntity {
8096
8096
  * @method
8097
8097
  * @override
8098
8098
  */
8099
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8099
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8100
8100
  /**
8101
8101
  * Vector Databases - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8102
8102
  * @public
@@ -8168,7 +8168,7 @@ export declare class VectorDatabaseEntity extends BaseEntity {
8168
8168
  export declare class EntityRecordDocumentEntity extends BaseEntity {
8169
8169
  /**
8170
8170
  * Loads the Entity Record Documents record from the database
8171
- * @param ID: Number - primary key value to load the Entity Record Documents record.
8171
+ * @param ID: number - primary key value to load the Entity Record Documents record.
8172
8172
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8173
8173
  * @returns {Promise<boolean>} - true if successful, false otherwise
8174
8174
  * @public
@@ -8177,7 +8177,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8177
8177
  * @method
8178
8178
  * @override
8179
8179
  */
8180
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8180
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8181
8181
  /**
8182
8182
  * Entity Record Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8183
8183
  * @public
@@ -8270,7 +8270,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8270
8270
  export declare class EntityDocumentEntity extends BaseEntity {
8271
8271
  /**
8272
8272
  * Loads the Entity Documents record from the database
8273
- * @param ID: Number - primary key value to load the Entity Documents record.
8273
+ * @param ID: number - primary key value to load the Entity Documents record.
8274
8274
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8275
8275
  * @returns {Promise<boolean>} - true if successful, false otherwise
8276
8276
  * @public
@@ -8279,7 +8279,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
8279
8279
  * @method
8280
8280
  * @override
8281
8281
  */
8282
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8282
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8283
8283
  /**
8284
8284
  * Entity Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8285
8285
  * @public
@@ -8367,7 +8367,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
8367
8367
  export declare class DataContextItemEntity extends BaseEntity {
8368
8368
  /**
8369
8369
  * Loads the Data Context Items record from the database
8370
- * @param ID: Number - primary key value to load the Data Context Items record.
8370
+ * @param ID: number - primary key value to load the Data Context Items record.
8371
8371
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8372
8372
  * @returns {Promise<boolean>} - true if successful, false otherwise
8373
8373
  * @public
@@ -8376,7 +8376,7 @@ export declare class DataContextItemEntity extends BaseEntity {
8376
8376
  * @method
8377
8377
  * @override
8378
8378
  */
8379
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8379
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8380
8380
  /**
8381
8381
  * Data Context Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8382
8382
  * @public
@@ -8514,7 +8514,7 @@ export declare class DataContextItemEntity extends BaseEntity {
8514
8514
  export declare class DataContextEntity extends BaseEntity {
8515
8515
  /**
8516
8516
  * Loads the Data Contexts record from the database
8517
- * @param ID: Number - primary key value to load the Data Contexts record.
8517
+ * @param ID: number - primary key value to load the Data Contexts record.
8518
8518
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8519
8519
  * @returns {Promise<boolean>} - true if successful, false otherwise
8520
8520
  * @public
@@ -8523,7 +8523,7 @@ export declare class DataContextEntity extends BaseEntity {
8523
8523
  * @method
8524
8524
  * @override
8525
8525
  */
8526
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8526
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8527
8527
  /**
8528
8528
  * Data Contexts - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8529
8529
  * @public
@@ -8602,7 +8602,7 @@ export declare class DataContextEntity extends BaseEntity {
8602
8602
  export declare class UserViewCategoryEntity extends BaseEntity {
8603
8603
  /**
8604
8604
  * Loads the User View Categories record from the database
8605
- * @param ID: Number - primary key value to load the User View Categories record.
8605
+ * @param ID: number - primary key value to load the User View Categories record.
8606
8606
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8607
8607
  * @returns {Promise<boolean>} - true if successful, false otherwise
8608
8608
  * @public
@@ -8611,7 +8611,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8611
8611
  * @method
8612
8612
  * @override
8613
8613
  */
8614
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8614
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8615
8615
  /**
8616
8616
  * User View Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8617
8617
  * @public
@@ -8683,7 +8683,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8683
8683
  export declare class DashboardCategoryEntity extends BaseEntity {
8684
8684
  /**
8685
8685
  * Loads the Dashboard Categories record from the database
8686
- * @param ID: Number - primary key value to load the Dashboard Categories record.
8686
+ * @param ID: number - primary key value to load the Dashboard Categories record.
8687
8687
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8688
8688
  * @returns {Promise<boolean>} - true if successful, false otherwise
8689
8689
  * @public
@@ -8692,7 +8692,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8692
8692
  * @method
8693
8693
  * @override
8694
8694
  */
8695
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8695
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8696
8696
  /**
8697
8697
  * Dashboard Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8698
8698
  * @public
@@ -8764,7 +8764,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8764
8764
  export declare class ReportCategoryEntity extends BaseEntity {
8765
8765
  /**
8766
8766
  * Loads the Report Categories record from the database
8767
- * @param ID: Number - primary key value to load the Report Categories record.
8767
+ * @param ID: number - primary key value to load the Report Categories record.
8768
8768
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8769
8769
  * @returns {Promise<boolean>} - true if successful, false otherwise
8770
8770
  * @public
@@ -8773,7 +8773,7 @@ export declare class ReportCategoryEntity extends BaseEntity {
8773
8773
  * @method
8774
8774
  * @override
8775
8775
  */
8776
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8776
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8777
8777
  /**
8778
8778
  * Report Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8779
8779
  * @public