We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0494886 commit 6ac7db8Copy full SHA for 6ac7db8
src/Account/Entities/Contact.php
@@ -16,6 +16,7 @@ class Contact
16
public $thresholdMonitoringAlertsEmail;
17
public $monitoringAlertsSms;
18
public $thresholdMonitoringAlertsSms;
19
+ public $hasRestrictedServerView;
20
21
/**
22
* Contact constructor.
@@ -39,6 +40,8 @@ public function __construct($item = null)
39
40
$this->thresholdMonitoringAlertsEmail = $item->threshold_monitoring_alerts_email;
41
$this->monitoringAlertsSms = $item->monitoring_alerts_sms;
42
$this->thresholdMonitoringAlertsSms = $item->threshold_monitoring_alerts_sms;
43
+
44
+ $this->hasRestrictedServerView = $item->has_restricted_server_view;
45
}
46
47
0 commit comments