_propDict)) { return $this->_propDict["commentCount"]; } else { return null; } } /** * Sets the commentCount * Count of comments. * * @param int $val The value of the commentCount * * @return ReactionsFacet */ public function setCommentCount($val) { $this->_propDict["commentCount"] = $val; return $this; } /** * Gets the likeCount * Count of likes. * * @return int|null The likeCount */ public function getLikeCount() { if (array_key_exists("likeCount", $this->_propDict)) { return $this->_propDict["likeCount"]; } else { return null; } } /** * Sets the likeCount * Count of likes. * * @param int $val The value of the likeCount * * @return ReactionsFacet */ public function setLikeCount($val) { $this->_propDict["likeCount"] = $val; return $this; } /** * Gets the shareCount * Count of shares. * * @return int|null The shareCount */ public function getShareCount() { if (array_key_exists("shareCount", $this->_propDict)) { return $this->_propDict["shareCount"]; } else { return null; } } /** * Sets the shareCount * Count of shares. * * @param int $val The value of the shareCount * * @return ReactionsFacet */ public function setShareCount($val) { $this->_propDict["shareCount"] = $val; return $this; } }