Skip to content

Commit

Permalink
added the hasRestrictedServerView property to the Account Contact entity
Browse files Browse the repository at this point in the history
  • Loading branch information
dawid.hochman committed Nov 14, 2024
1 parent 0494886 commit 6ac7db8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Account/Entities/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class Contact
public $thresholdMonitoringAlertsEmail;
public $monitoringAlertsSms;
public $thresholdMonitoringAlertsSms;
public $hasRestrictedServerView;

/**
* Contact constructor.
Expand All @@ -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;
}

/**
Expand Down

0 comments on commit 6ac7db8

Please sign in to comment.