_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; } /** * Sets the createdDateTime * * @param \DateTime $val The value to assign to the createdDateTime * * @return ServiceProvisioningError The ServiceProvisioningError */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the isResolved * * @return bool|null The isResolved */ public function getIsResolved() { if (array_key_exists("isResolved", $this->_propDict)) { return $this->_propDict["isResolved"]; } else { return null; } } /** * Sets the isResolved * * @param bool $val The value of the isResolved * * @return ServiceProvisioningError */ public function setIsResolved($val) { $this->_propDict["isResolved"] = $val; return $this; } /** * Gets the serviceInstance * * @return string|null The serviceInstance */ public function getServiceInstance() { if (array_key_exists("serviceInstance", $this->_propDict)) { return $this->_propDict["serviceInstance"]; } else { return null; } } /** * Sets the serviceInstance * * @param string $val The value of the serviceInstance * * @return ServiceProvisioningError */ public function setServiceInstance($val) { $this->_propDict["serviceInstance"] = $val; return $this; } }