_propDict)) { return $this->_propDict["channelId"]; } else { return null; } } /** * Sets the channelId * The unique identifier for the channel whose members should receive the notification. * * @param string $val The value of the channelId * * @return ChannelMembersNotificationRecipient */ public function setChannelId($val) { $this->_propDict["channelId"] = $val; return $this; } /** * Gets the teamId * The unique identifier for the team under which the channel resides. * * @return string|null The teamId */ public function getTeamId() { if (array_key_exists("teamId", $this->_propDict)) { return $this->_propDict["teamId"]; } else { return null; } } /** * Sets the teamId * The unique identifier for the team under which the channel resides. * * @param string $val The value of the teamId * * @return ChannelMembersNotificationRecipient */ public function setTeamId($val) { $this->_propDict["teamId"] = $val; return $this; } }