_propDict)) { return $this->_propDict["comment"]; } else { return null; } } /** * Sets the comment * The comment text. * * @param string $val The value of the comment * * @return AlertComment */ public function setComment($val) { $this->_propDict["comment"] = $val; return $this; } /** * Gets the createdByDisplayName * The person or app name that submitted the comment. * * @return string|null The createdByDisplayName */ public function getCreatedByDisplayName() { if (array_key_exists("createdByDisplayName", $this->_propDict)) { return $this->_propDict["createdByDisplayName"]; } else { return null; } } /** * Sets the createdByDisplayName * The person or app name that submitted the comment. * * @param string $val The value of the createdByDisplayName * * @return AlertComment */ public function setCreatedByDisplayName($val) { $this->_propDict["createdByDisplayName"] = $val; return $this; } /** * Gets the createdDateTime * The time when the comment was submitted. * * @return \DateTime|null The createdDateTime */ public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_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 * The time when the comment was submitted. * * @param \DateTime $val The value to assign to the createdDateTime * * @return AlertComment The AlertComment */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } }