_propDict)) { return $this->_propDict["inboundAllowed"]; } else { return null; } } /** * Sets the inboundAllowed * Defines whether external users coming inbound are allowed. * * @param bool $val The value of the inboundAllowed * * @return InboundOutboundPolicyConfiguration */ public function setInboundAllowed($val) { $this->_propDict["inboundAllowed"] = $val; return $this; } /** * Gets the outboundAllowed * Defines whether internal users are allowed to go outbound. * * @return bool|null The outboundAllowed */ public function getOutboundAllowed() { if (array_key_exists("outboundAllowed", $this->_propDict)) { return $this->_propDict["outboundAllowed"]; } else { return null; } } /** * Sets the outboundAllowed * Defines whether internal users are allowed to go outbound. * * @param bool $val The value of the outboundAllowed * * @return InboundOutboundPolicyConfiguration */ public function setOutboundAllowed($val) { $this->_propDict["outboundAllowed"] = $val; return $this; } }