Skip to content

Commit

Permalink
Merge pull request #539 from DawidVH/account-contact-entity-update
Browse files Browse the repository at this point in the history
Updated the Contact entity
  • Loading branch information
DawidVH authored Nov 15, 2024
2 parents 0494886 + 6ac7db8 commit 1b06b5b
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 1b06b5b

Please sign in to comment.