_propDict)) { return $this->_propDict["isHostTeam"]; } else { return null; } } /** * Sets the isHostTeam * Indicates whether the team is the host of the channel. * * @param bool $val The isHostTeam * * @return SharedWithChannelTeamInfo */ public function setIsHostTeam($val) { $this->_propDict["isHostTeam"] = boolval($val); return $this; } /** * Gets the allowedMembers * A collection of team members who have access to the shared channel. * * @return array|null The allowedMembers */ public function getAllowedMembers() { if (array_key_exists("allowedMembers", $this->_propDict)) { return $this->_propDict["allowedMembers"]; } else { return null; } } /** * Sets the allowedMembers * A collection of team members who have access to the shared channel. * * @param ConversationMember[] $val The allowedMembers * * @return SharedWithChannelTeamInfo */ public function setAllowedMembers($val) { $this->_propDict["allowedMembers"] = $val; return $this; } }