ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ChatMessageReaction File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * ChatMessageReaction class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class ChatMessageReaction extends Entity { /** * Gets the createdDateTime * The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z * * @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 Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z * * @param \DateTime $val The value to assign to the createdDateTime * * @return ChatMessageReaction The ChatMessageReaction */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the reactionType * Supported values are like, angry, sad, laugh, heart, surprised. * * @return string|null The reactionType */ public function getReactionType() { if (array_key_exists("reactionType", $this->_propDict)) { return $this->_propDict["reactionType"]; } else { return null; } } /** * Sets the reactionType * Supported values are like, angry, sad, laugh, heart, surprised. * * @param string $val The value of the reactionType * * @return ChatMessageReaction */ public function setReactionType($val) { $this->_propDict["reactionType"] = $val; return $this; } /** * Gets the user * The user who reacted to the message. * * @return ChatMessageReactionIdentitySet|null The user */ public function getUser() { if (array_key_exists("user", $this->_propDict)) { if (is_a($this->_propDict["user"], "\Microsoft\Graph\Model\ChatMessageReactionIdentitySet") || is_null($this->_propDict["user"])) { return $this->_propDict["user"]; } else { $this->_propDict["user"] = new ChatMessageReactionIdentitySet($this->_propDict["user"]); return $this->_propDict["user"]; } } return null; } /** * Sets the user * The user who reacted to the message. * * @param ChatMessageReactionIdentitySet $val The value to assign to the user * * @return ChatMessageReaction The ChatMessageReaction */ public function setUser($val) { $this->_propDict["user"] = $val; return $this; } }
cải xoăn