_propDict)) { return $this->_propDict["isArchived"]; } else { return null; } } /** * Sets the isArchived * Indicates whether the user archived the message. * * @param bool $val The value of the isArchived * * @return ServiceUpdateMessageViewpoint */ public function setIsArchived($val) { $this->_propDict["isArchived"] = $val; return $this; } /** * Gets the isFavorited * Indicates whether the user marked the message as favorite. * * @return bool|null The isFavorited */ public function getIsFavorited() { if (array_key_exists("isFavorited", $this->_propDict)) { return $this->_propDict["isFavorited"]; } else { return null; } } /** * Sets the isFavorited * Indicates whether the user marked the message as favorite. * * @param bool $val The value of the isFavorited * * @return ServiceUpdateMessageViewpoint */ public function setIsFavorited($val) { $this->_propDict["isFavorited"] = $val; return $this; } /** * Gets the isRead * Indicates whether the user read the message. * * @return bool|null The isRead */ public function getIsRead() { if (array_key_exists("isRead", $this->_propDict)) { return $this->_propDict["isRead"]; } else { return null; } } /** * Sets the isRead * Indicates whether the user read the message. * * @param bool $val The value of the isRead * * @return ServiceUpdateMessageViewpoint */ public function setIsRead($val) { $this->_propDict["isRead"] = $val; return $this; } }