setODataType("#microsoft.graph.windowsInformationProtectionDesktopApp"); } /** * Gets the binaryName * The binary name. * * @return string|null The binaryName */ public function getBinaryName() { if (array_key_exists("binaryName", $this->_propDict)) { return $this->_propDict["binaryName"]; } else { return null; } } /** * Sets the binaryName * The binary name. * * @param string $val The value of the binaryName * * @return WindowsInformationProtectionDesktopApp */ public function setBinaryName($val) { $this->_propDict["binaryName"] = $val; return $this; } /** * Gets the binaryVersionHigh * The high binary version. * * @return string|null The binaryVersionHigh */ public function getBinaryVersionHigh() { if (array_key_exists("binaryVersionHigh", $this->_propDict)) { return $this->_propDict["binaryVersionHigh"]; } else { return null; } } /** * Sets the binaryVersionHigh * The high binary version. * * @param string $val The value of the binaryVersionHigh * * @return WindowsInformationProtectionDesktopApp */ public function setBinaryVersionHigh($val) { $this->_propDict["binaryVersionHigh"] = $val; return $this; } /** * Gets the binaryVersionLow * The lower binary version. * * @return string|null The binaryVersionLow */ public function getBinaryVersionLow() { if (array_key_exists("binaryVersionLow", $this->_propDict)) { return $this->_propDict["binaryVersionLow"]; } else { return null; } } /** * Sets the binaryVersionLow * The lower binary version. * * @param string $val The value of the binaryVersionLow * * @return WindowsInformationProtectionDesktopApp */ public function setBinaryVersionLow($val) { $this->_propDict["binaryVersionLow"] = $val; return $this; } }