setODataType("#microsoft.graph.iPv4CidrRange"); } /** * Gets the cidrAddress * IPv4 address in CIDR notation. Not nullable. * * @return string|null The cidrAddress */ public function getCidrAddress() { if (array_key_exists("cidrAddress", $this->_propDict)) { return $this->_propDict["cidrAddress"]; } else { return null; } } /** * Sets the cidrAddress * IPv4 address in CIDR notation. Not nullable. * * @param string $val The value of the cidrAddress * * @return IPv4CidrRange */ public function setCidrAddress($val) { $this->_propDict["cidrAddress"] = $val; return $this; } }