_propDict)) { return $this->_propDict["allowCreateUpdateChannels"]; } else { return null; } } /** * Sets the allowCreateUpdateChannels * If set to true, guests can add and update channels. * * @param bool $val The value of the allowCreateUpdateChannels * * @return TeamGuestSettings */ public function setAllowCreateUpdateChannels($val) { $this->_propDict["allowCreateUpdateChannels"] = $val; return $this; } /** * Gets the allowDeleteChannels * If set to true, guests can delete channels. * * @return bool|null The allowDeleteChannels */ public function getAllowDeleteChannels() { if (array_key_exists("allowDeleteChannels", $this->_propDict)) { return $this->_propDict["allowDeleteChannels"]; } else { return null; } } /** * Sets the allowDeleteChannels * If set to true, guests can delete channels. * * @param bool $val The value of the allowDeleteChannels * * @return TeamGuestSettings */ public function setAllowDeleteChannels($val) { $this->_propDict["allowDeleteChannels"] = $val; return $this; } }