setODataType("#microsoft.graph.iPv4Range"); } /** * Gets the lowerAddress * Lower address. * * @return string|null The lowerAddress */ public function getLowerAddress() { if (array_key_exists("lowerAddress", $this->_propDict)) { return $this->_propDict["lowerAddress"]; } else { return null; } } /** * Sets the lowerAddress * Lower address. * * @param string $val The value of the lowerAddress * * @return IPv4Range */ public function setLowerAddress($val) { $this->_propDict["lowerAddress"] = $val; return $this; } /** * Gets the upperAddress * Upper address. * * @return string|null The upperAddress */ public function getUpperAddress() { if (array_key_exists("upperAddress", $this->_propDict)) { return $this->_propDict["upperAddress"]; } else { return null; } } /** * Sets the upperAddress * Upper address. * * @param string $val The value of the upperAddress * * @return IPv4Range */ public function setUpperAddress($val) { $this->_propDict["upperAddress"] = $val; return $this; } }