cloud-ide-lms-model 1.0.311 → 1.0.313
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.
|
@@ -32,7 +32,7 @@ class MFdskLeadConfigMasterGetByIdPayload {
|
|
|
32
32
|
}
|
|
33
33
|
Validate() {
|
|
34
34
|
let errorLogger = {};
|
|
35
|
-
if (!this.fdlcm_id) {
|
|
35
|
+
if (!this.fdlcm_id && !this.fdlcm_form_endpoint) {
|
|
36
36
|
errorLogger.fdlcm_id = "Lead Config Master ID is Required!";
|
|
37
37
|
}
|
|
38
38
|
return errorLogger;
|
|
@@ -13,17 +13,17 @@ declare class FdskLeadsBase {
|
|
|
13
13
|
fdlds_email?: string;
|
|
14
14
|
}
|
|
15
15
|
declare class FdskLeads extends FdskLeadsBase {
|
|
16
|
-
fdlds_entity_id_syen?: string;
|
|
17
|
-
fdlds_config_fdlcm?: string;
|
|
18
|
-
fdlds_counselor_id_user?: string;
|
|
19
|
-
fdlds_owner_id_user?: string;
|
|
20
|
-
fdlds_active_status_id_sygms?: string;
|
|
21
|
-
fdlds_pin_sypin?: string;
|
|
22
|
-
fdlds_city_sypin?: string;
|
|
23
|
-
fdlds_state_sypin?: string;
|
|
24
|
-
fdlds_country_syctr?: string;
|
|
25
|
-
fdlds_priority_id_sygms?: string;
|
|
26
|
-
fdlds_reference_by_id_user?: string;
|
|
16
|
+
fdlds_entity_id_syen?: string | null;
|
|
17
|
+
fdlds_config_fdlcm?: string | null;
|
|
18
|
+
fdlds_counselor_id_user?: string | null;
|
|
19
|
+
fdlds_owner_id_user?: string | null;
|
|
20
|
+
fdlds_active_status_id_sygms?: string | null;
|
|
21
|
+
fdlds_pin_sypin?: string | null;
|
|
22
|
+
fdlds_city_sypin?: string | null;
|
|
23
|
+
fdlds_state_sypin?: string | null;
|
|
24
|
+
fdlds_country_syctr?: string | null;
|
|
25
|
+
fdlds_priority_id_sygms?: string | null;
|
|
26
|
+
fdlds_reference_by_id_user?: string | null;
|
|
27
27
|
}
|
|
28
28
|
export { FdskLeads, // interface
|
|
29
29
|
FdskLeadsBase };
|