diff --git a/src/Account/Entities/Contact.php b/src/Account/Entities/Contact.php index 4de52cfb..aa379934 100644 --- a/src/Account/Entities/Contact.php +++ b/src/Account/Entities/Contact.php @@ -16,6 +16,7 @@ class Contact public $thresholdMonitoringAlertsEmail; public $monitoringAlertsSms; public $thresholdMonitoringAlertsSms; + public $hasRestrictedServerView; /** * Contact constructor. @@ -39,6 +40,8 @@ public function __construct($item = null) $this->thresholdMonitoringAlertsEmail = $item->threshold_monitoring_alerts_email; $this->monitoringAlertsSms = $item->monitoring_alerts_sms; $this->thresholdMonitoringAlertsSms = $item->threshold_monitoring_alerts_sms; + + $this->hasRestrictedServerView = $item->has_restricted_server_view; } /**