setODataType("#microsoft.graph.omaSettingFloatingPoint"); } /** * Gets the value * Value. * * @return float|null The value */ public function getValue() { if (array_key_exists("value", $this->_propDict)) { return $this->_propDict["value"]; } else { return null; } } /** * Sets the value * Value. * * @param float $val The value of the value * * @return OmaSettingFloatingPoint */ public function setValue($val) { $this->_propDict["value"] = $val; return $this; } }