_propDict)) { return $this->_propDict["registrant"]; } else { return null; } } /** * Sets the registrant * The company or individual who registered this hostname, from WHOIS data. * * @param string $val The registrant * * @return Hostname */ public function setRegistrant($val) { $this->_propDict["registrant"] = $val; return $this; } /** * Gets the registrar * The registrar for this hostname, from WHOIS data. * * @return string|null The registrar */ public function getRegistrar() { if (array_key_exists("registrar", $this->_propDict)) { return $this->_propDict["registrar"]; } else { return null; } } /** * Sets the registrar * The registrar for this hostname, from WHOIS data. * * @param string $val The registrar * * @return Hostname */ public function setRegistrar($val) { $this->_propDict["registrar"] = $val; return $this; } }