_propDict)) { return $this->_propDict["countryLetterCode"]; } else { return null; } } /** * Sets the countryLetterCode * The two-letter country code according to ISO 3166 format, for example: US, UK, CA, etc. * * @param string $val The value of the countryLetterCode * * @return IpEvidence */ public function setCountryLetterCode($val) { $this->_propDict["countryLetterCode"] = $val; return $this; } /** * Gets the ipAddress * The value of the IP Address, can be either in V4 address or V6 address format. * * @return string|null The ipAddress */ public function getIpAddress() { if (array_key_exists("ipAddress", $this->_propDict)) { return $this->_propDict["ipAddress"]; } else { return null; } } /** * Sets the ipAddress * The value of the IP Address, can be either in V4 address or V6 address format. * * @param string $val The value of the ipAddress * * @return IpEvidence */ public function setIpAddress($val) { $this->_propDict["ipAddress"] = $val; return $this; } }