File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ class Contact
10
10
public $ firstName ;
11
11
public $ lastName ;
12
12
public $ emailAddress ;
13
+ public $ mobile ;
14
+
15
+ public $ monitoringAlertsEmail ;
16
+ public $ thresholdMonitoringAlertsEmail ;
17
+ public $ monitoringAlertsSms ;
18
+ public $ thresholdMonitoringAlertsSms ;
13
19
14
20
/**
15
21
* Contact constructor.
@@ -27,6 +33,12 @@ public function __construct($item = null)
27
33
$ this ->firstName = $ item ->first_name ;
28
34
$ this ->lastName = $ item ->last_name ;
29
35
$ this ->emailAddress = $ item ->email_address ;
36
+ $ this ->mobile = $ item ->mobile ;
37
+
38
+ $ this ->monitoringAlertsEmail = $ item ->monitoring_alerts_email ;
39
+ $ this ->thresholdMonitoringAlertsEmail = $ item ->threshold_monitoring_alerts_email ;
40
+ $ this ->monitoringAlertsSms = $ item ->monitoring_alerts_sms ;
41
+ $ this ->thresholdMonitoringAlertsSms = $ item ->threshold_monitoring_alerts_sms ;
30
42
}
31
43
32
44
/**
You can’t perform that action at this time.
0 commit comments