ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * Windows10SecureAssessmentConfiguration File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * Windows10SecureAssessmentConfiguration class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class Windows10SecureAssessmentConfiguration extends DeviceConfiguration { /** * Gets the allowPrinting * Indicates whether or not to allow the app from printing during the test. * * @return bool|null The allowPrinting */ public function getAllowPrinting() { if (array_key_exists("allowPrinting", $this->_propDict)) { return $this->_propDict["allowPrinting"]; } else { return null; } } /** * Sets the allowPrinting * Indicates whether or not to allow the app from printing during the test. * * @param bool $val The allowPrinting * * @return Windows10SecureAssessmentConfiguration */ public function setAllowPrinting($val) { $this->_propDict["allowPrinting"] = boolval($val); return $this; } /** * Gets the allowScreenCapture * Indicates whether or not to allow screen capture capability during a test. * * @return bool|null The allowScreenCapture */ public function getAllowScreenCapture() { if (array_key_exists("allowScreenCapture", $this->_propDict)) { return $this->_propDict["allowScreenCapture"]; } else { return null; } } /** * Sets the allowScreenCapture * Indicates whether or not to allow screen capture capability during a test. * * @param bool $val The allowScreenCapture * * @return Windows10SecureAssessmentConfiguration */ public function setAllowScreenCapture($val) { $this->_propDict["allowScreenCapture"] = boolval($val); return $this; } /** * Gets the allowTextSuggestion * Indicates whether or not to allow text suggestions during the test. * * @return bool|null The allowTextSuggestion */ public function getAllowTextSuggestion() { if (array_key_exists("allowTextSuggestion", $this->_propDict)) { return $this->_propDict["allowTextSuggestion"]; } else { return null; } } /** * Sets the allowTextSuggestion * Indicates whether or not to allow text suggestions during the test. * * @param bool $val The allowTextSuggestion * * @return Windows10SecureAssessmentConfiguration */ public function setAllowTextSuggestion($val) { $this->_propDict["allowTextSuggestion"] = boolval($val); return $this; } /** * Gets the configurationAccount * The account used to configure the Windows device for taking the test. The user can be a domain account (domain/user), an AAD account (username@tenant.com) or a local account (username). * * @return string|null The configurationAccount */ public function getConfigurationAccount() { if (array_key_exists("configurationAccount", $this->_propDict)) { return $this->_propDict["configurationAccount"]; } else { return null; } } /** * Sets the configurationAccount * The account used to configure the Windows device for taking the test. The user can be a domain account (domain/user), an AAD account (username@tenant.com) or a local account (username). * * @param string $val The configurationAccount * * @return Windows10SecureAssessmentConfiguration */ public function setConfigurationAccount($val) { $this->_propDict["configurationAccount"] = $val; return $this; } /** * Gets the launchUri * Url link to an assessment that's automatically loaded when the secure assessment browser is launched. It has to be a valid Url (http[s]://msdn.microsoft.com/). * * @return string|null The launchUri */ public function getLaunchUri() { if (array_key_exists("launchUri", $this->_propDict)) { return $this->_propDict["launchUri"]; } else { return null; } } /** * Sets the launchUri * Url link to an assessment that's automatically loaded when the secure assessment browser is launched. It has to be a valid Url (http[s]://msdn.microsoft.com/). * * @param string $val The launchUri * * @return Windows10SecureAssessmentConfiguration */ public function setLaunchUri($val) { $this->_propDict["launchUri"] = $val; return $this; } }
cải xoăn