Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* DeviceDetail 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;
/**
* DeviceDetail 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 DeviceDetail extends Entity
{
/**
* Gets the browser
* Indicates the browser information of the used for signing in.
*
* @return string|null The browser
*/
public function getBrowser()
{
if (array_key_exists("browser", $this->_propDict)) {
return $this->_propDict["browser"];
} else {
return null;
}
}
/**
* Sets the browser
* Indicates the browser information of the used for signing in.
*
* @param string $val The value of the browser
*
* @return DeviceDetail
*/
public function setBrowser($val)
{
$this->_propDict["browser"] = $val;
return $this;
}
/**
* Gets the deviceId
* Refers to the UniqueID of the device used for signing in.
*
* @return string|null The deviceId
*/
public function getDeviceId()
{
if (array_key_exists("deviceId", $this->_propDict)) {
return $this->_propDict["deviceId"];
} else {
return null;
}
}
/**
* Sets the deviceId
* Refers to the UniqueID of the device used for signing in.
*
* @param string $val The value of the deviceId
*
* @return DeviceDetail
*/
public function setDeviceId($val)
{
$this->_propDict["deviceId"] = $val;
return $this;
}
/**
* Gets the displayName
* Refers to the name of the device used for signing in.
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* Refers to the name of the device used for signing in.
*
* @param string $val The value of the displayName
*
* @return DeviceDetail
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the isCompliant
* Indicates whether the device is compliant.
*
* @return bool|null The isCompliant
*/
public function getIsCompliant()
{
if (array_key_exists("isCompliant", $this->_propDict)) {
return $this->_propDict["isCompliant"];
} else {
return null;
}
}
/**
* Sets the isCompliant
* Indicates whether the device is compliant.
*
* @param bool $val The value of the isCompliant
*
* @return DeviceDetail
*/
public function setIsCompliant($val)
{
$this->_propDict["isCompliant"] = $val;
return $this;
}
/**
* Gets the isManaged
* Indicates whether the device is managed.
*
* @return bool|null The isManaged
*/
public function getIsManaged()
{
if (array_key_exists("isManaged", $this->_propDict)) {
return $this->_propDict["isManaged"];
} else {
return null;
}
}
/**
* Sets the isManaged
* Indicates whether the device is managed.
*
* @param bool $val The value of the isManaged
*
* @return DeviceDetail
*/
public function setIsManaged($val)
{
$this->_propDict["isManaged"] = $val;
return $this;
}
/**
* Gets the operatingSystem
* Indicates the operating system name and version used for signing in.
*
* @return string|null The operatingSystem
*/
public function getOperatingSystem()
{
if (array_key_exists("operatingSystem", $this->_propDict)) {
return $this->_propDict["operatingSystem"];
} else {
return null;
}
}
/**
* Sets the operatingSystem
* Indicates the operating system name and version used for signing in.
*
* @param string $val The value of the operatingSystem
*
* @return DeviceDetail
*/
public function setOperatingSystem($val)
{
$this->_propDict["operatingSystem"] = $val;
return $this;
}
/**
* Gets the trustType
* Provides information about whether the signed-in device is Workplace Joined, AzureAD Joined, Domain Joined.
*
* @return string|null The trustType
*/
public function getTrustType()
{
if (array_key_exists("trustType", $this->_propDict)) {
return $this->_propDict["trustType"];
} else {
return null;
}
}
/**
* Sets the trustType
* Provides information about whether the signed-in device is Workplace Joined, AzureAD Joined, Domain Joined.
*
* @param string $val The value of the trustType
*
* @return DeviceDetail
*/
public function setTrustType($val)
{
$this->_propDict["trustType"] = $val;
return $this;
}
}