From 6ac7db8eafa40475a9f97c43247cf7fcb7436f57 Mon Sep 17 00:00:00 2001 From: "dawid.hochman" Date: Thu, 14 Nov 2024 16:28:58 +0000 Subject: [PATCH] added the hasRestrictedServerView property to the Account Contact entity --- src/Account/Entities/Contact.php | 3 +++ 1 file changed, 3 insertions(+) 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; } /**