setODataType("#microsoft.graph.chatRenamedEventMessageDetail"); } /** * Gets the chatDisplayName * The updated name of the chat. * * @return string|null The chatDisplayName */ public function getChatDisplayName() { if (array_key_exists("chatDisplayName", $this->_propDict)) { return $this->_propDict["chatDisplayName"]; } else { return null; } } /** * Sets the chatDisplayName * The updated name of the chat. * * @param string $val The value of the chatDisplayName * * @return ChatRenamedEventMessageDetail */ public function setChatDisplayName($val) { $this->_propDict["chatDisplayName"] = $val; return $this; } /** * Gets the chatId * Unique identifier of the chat. * * @return string|null The chatId */ public function getChatId() { if (array_key_exists("chatId", $this->_propDict)) { return $this->_propDict["chatId"]; } else { return null; } } /** * Sets the chatId * Unique identifier of the chat. * * @param string $val The value of the chatId * * @return ChatRenamedEventMessageDetail */ public function setChatId($val) { $this->_propDict["chatId"] = $val; return $this; } /** * Gets the initiator * Initiator of the event. * * @return IdentitySet|null The initiator */ public function getInitiator() { if (array_key_exists("initiator", $this->_propDict)) { if (is_a($this->_propDict["initiator"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["initiator"])) { return $this->_propDict["initiator"]; } else { $this->_propDict["initiator"] = new IdentitySet($this->_propDict["initiator"]); return $this->_propDict["initiator"]; } } return null; } /** * Sets the initiator * Initiator of the event. * * @param IdentitySet $val The value to assign to the initiator * * @return ChatRenamedEventMessageDetail The ChatRenamedEventMessageDetail */ public function setInitiator($val) { $this->_propDict["initiator"] = $val; return $this; } }