_propDict)) { if (is_a($this->_propDict["address"], "\Microsoft\Graph\Model\PhysicalAddress") || is_null($this->_propDict["address"])) { return $this->_propDict["address"]; } else { $this->_propDict["address"] = new \Microsoft\Graph\Model\PhysicalAddress($this->_propDict["address"]); return $this->_propDict["address"]; } } return null; } /** * Sets the address * The physical address of the entity. * * @param \Microsoft\Graph\Model\PhysicalAddress $val The value to assign to the address * * @return WhoisContact The WhoisContact */ public function setAddress($val) { $this->_propDict["address"] = $val; return $this; } /** * Gets the email * The email of this WHOIS contact. * * @return string|null The email */ public function getEmail() { if (array_key_exists("email", $this->_propDict)) { return $this->_propDict["email"]; } else { return null; } } /** * Sets the email * The email of this WHOIS contact. * * @param string $val The value of the email * * @return WhoisContact */ public function setEmail($val) { $this->_propDict["email"] = $val; return $this; } /** * Gets the fax * The fax of this WHOIS contact. No format is guaranteed. * * @return string|null The fax */ public function getFax() { if (array_key_exists("fax", $this->_propDict)) { return $this->_propDict["fax"]; } else { return null; } } /** * Sets the fax * The fax of this WHOIS contact. No format is guaranteed. * * @param string $val The value of the fax * * @return WhoisContact */ public function setFax($val) { $this->_propDict["fax"] = $val; return $this; } /** * Gets the name * The name of this WHOIS contact. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name of this WHOIS contact. * * @param string $val The value of the name * * @return WhoisContact */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the organization * The organization of this WHOIS contact. * * @return string|null The organization */ public function getOrganization() { if (array_key_exists("organization", $this->_propDict)) { return $this->_propDict["organization"]; } else { return null; } } /** * Sets the organization * The organization of this WHOIS contact. * * @param string $val The value of the organization * * @return WhoisContact */ public function setOrganization($val) { $this->_propDict["organization"] = $val; return $this; } /** * Gets the telephone * The telephone of this WHOIS contact. No format is guaranteed. * * @return string|null The telephone */ public function getTelephone() { if (array_key_exists("telephone", $this->_propDict)) { return $this->_propDict["telephone"]; } else { return null; } } /** * Sets the telephone * The telephone of this WHOIS contact. No format is guaranteed. * * @param string $val The value of the telephone * * @return WhoisContact */ public function setTelephone($val) { $this->_propDict["telephone"] = $val; return $this; } }