setODataType("#microsoft.graph.microsoftStoreForBusinessAppAssignmentSettings"); } /** * Gets the useDeviceContext * Whether or not to use device execution context for Microsoft Store for Business mobile app. * * @return bool|null The useDeviceContext */ public function getUseDeviceContext() { if (array_key_exists("useDeviceContext", $this->_propDict)) { return $this->_propDict["useDeviceContext"]; } else { return null; } } /** * Sets the useDeviceContext * Whether or not to use device execution context for Microsoft Store for Business mobile app. * * @param bool $val The value of the useDeviceContext * * @return MicrosoftStoreForBusinessAppAssignmentSettings */ public function setUseDeviceContext($val) { $this->_propDict["useDeviceContext"] = $val; return $this; } }