_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 * If status is failed, provides more information about the error that caused the failure. * * @param \Microsoft\Graph\Model\PublicError $val The error * * @return ConnectionOperation */ public function setError($val) { $this->_propDict["error"] = $val; return $this; } /** * Gets the status * Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed, unknownFutureValue. * * @return ConnectionOperationStatus|null The status */ public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Microsoft\Graph\ExternalConnectors\Model\ConnectionOperationStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new ConnectionOperationStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; } /** * Sets the status * Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed, unknownFutureValue. * * @param ConnectionOperationStatus $val The status * * @return ConnectionOperation */ public function setStatus($val) { $this->_propDict["status"] = $val; return $this; } }