_propDict)) { if (is_a($this->_propDict["error"], "\Microsoft\Graph\Model\PublicError") || is_null($this->_propDict["error"])) { return $this->_propDict["error"]; } else { $this->_propDict["error"] = new \Microsoft\Graph\Model\PublicError($this->_propDict["error"]); return $this->_propDict["error"]; } } return null; } /** * Sets the error * The error if the status isn't successful. * * @param \Microsoft\Graph\Model\PublicError $val The value to assign to the error * * @return RetentionEventStatus The RetentionEventStatus */ public function setError($val) { $this->_propDict["error"] = $val; return $this; } /** * Gets the status * The status of the distribution. The possible values are: pending, error, success, notAvaliable. * * @return EventStatusType|null The status */ public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Microsoft\Graph\SecurityNamespace\Model\EventStatusType") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new EventStatusType($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; } /** * Sets the status * The status of the distribution. The possible values are: pending, error, success, notAvaliable. * * @param EventStatusType $val The value to assign to the status * * @return RetentionEventStatus The RetentionEventStatus */ public function setStatus($val) { $this->_propDict["status"] = $val; return $this; } }