_propDict)) { return $this->_propDict["ipAddressOrFQDN"]; } else { return null; } } /** * Sets the ipAddressOrFQDN * The IP address or FQDN * * @param string $val The value of the ipAddressOrFQDN * * @return ProxiedDomain */ public function setIpAddressOrFQDN($val) { $this->_propDict["ipAddressOrFQDN"] = $val; return $this; } /** * Gets the proxy * Proxy IP or FQDN * * @return string|null The proxy */ public function getProxy() { if (array_key_exists("proxy", $this->_propDict)) { return $this->_propDict["proxy"]; } else { return null; } } /** * Sets the proxy * Proxy IP or FQDN * * @param string $val The value of the proxy * * @return ProxiedDomain */ public function setProxy($val) { $this->_propDict["proxy"] = $val; return $this; } }