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.
*
* DeviceInstallState 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;
/**
* DeviceInstallState 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 DeviceInstallState extends Entity
{
/**
* Gets the deviceId
* Device Id.
*
* @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
* Device Id.
*
* @param string $val The deviceId
*
* @return DeviceInstallState
*/
public function setDeviceId($val)
{
$this->_propDict["deviceId"] = $val;
return $this;
}
/**
* Gets the deviceName
* Device name.
*
* @return string|null The deviceName
*/
public function getDeviceName()
{
if (array_key_exists("deviceName", $this->_propDict)) {
return $this->_propDict["deviceName"];
} else {
return null;
}
}
/**
* Sets the deviceName
* Device name.
*
* @param string $val The deviceName
*
* @return DeviceInstallState
*/
public function setDeviceName($val)
{
$this->_propDict["deviceName"] = $val;
return $this;
}
/**
* Gets the errorCode
* The error code for install failures.
*
* @return string|null The errorCode
*/
public function getErrorCode()
{
if (array_key_exists("errorCode", $this->_propDict)) {
return $this->_propDict["errorCode"];
} else {
return null;
}
}
/**
* Sets the errorCode
* The error code for install failures.
*
* @param string $val The errorCode
*
* @return DeviceInstallState
*/
public function setErrorCode($val)
{
$this->_propDict["errorCode"] = $val;
return $this;
}
/**
* Gets the installState
* The install state of the eBook. Possible values are: notApplicable, installed, failed, notInstalled, uninstallFailed, unknown.
*
* @return InstallState|null The installState
*/
public function getInstallState()
{
if (array_key_exists("installState", $this->_propDict)) {
if (is_a($this->_propDict["installState"], "\Microsoft\Graph\Model\InstallState") || is_null($this->_propDict["installState"])) {
return $this->_propDict["installState"];
} else {
$this->_propDict["installState"] = new InstallState($this->_propDict["installState"]);
return $this->_propDict["installState"];
}
}
return null;
}
/**
* Sets the installState
* The install state of the eBook. Possible values are: notApplicable, installed, failed, notInstalled, uninstallFailed, unknown.
*
* @param InstallState $val The installState
*
* @return DeviceInstallState
*/
public function setInstallState($val)
{
$this->_propDict["installState"] = $val;
return $this;
}
/**
* Gets the lastSyncDateTime
* Last sync date and time.
*
* @return \DateTime|null The lastSyncDateTime
*/
public function getLastSyncDateTime()
{
if (array_key_exists("lastSyncDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastSyncDateTime"], "\DateTime") || is_null($this->_propDict["lastSyncDateTime"])) {
return $this->_propDict["lastSyncDateTime"];
} else {
$this->_propDict["lastSyncDateTime"] = new \DateTime($this->_propDict["lastSyncDateTime"]);
return $this->_propDict["lastSyncDateTime"];
}
}
return null;
}
/**
* Sets the lastSyncDateTime
* Last sync date and time.
*
* @param \DateTime $val The lastSyncDateTime
*
* @return DeviceInstallState
*/
public function setLastSyncDateTime($val)
{
$this->_propDict["lastSyncDateTime"] = $val;
return $this;
}
/**
* Gets the osDescription
* OS Description.
*
* @return string|null The osDescription
*/
public function getOsDescription()
{
if (array_key_exists("osDescription", $this->_propDict)) {
return $this->_propDict["osDescription"];
} else {
return null;
}
}
/**
* Sets the osDescription
* OS Description.
*
* @param string $val The osDescription
*
* @return DeviceInstallState
*/
public function setOsDescription($val)
{
$this->_propDict["osDescription"] = $val;
return $this;
}
/**
* Gets the osVersion
* OS Version.
*
* @return string|null The osVersion
*/
public function getOsVersion()
{
if (array_key_exists("osVersion", $this->_propDict)) {
return $this->_propDict["osVersion"];
} else {
return null;
}
}
/**
* Sets the osVersion
* OS Version.
*
* @param string $val The osVersion
*
* @return DeviceInstallState
*/
public function setOsVersion($val)
{
$this->_propDict["osVersion"] = $val;
return $this;
}
/**
* Gets the userName
* Device User Name.
*
* @return string|null The userName
*/
public function getUserName()
{
if (array_key_exists("userName", $this->_propDict)) {
return $this->_propDict["userName"];
} else {
return null;
}
}
/**
* Sets the userName
* Device User Name.
*
* @param string $val The userName
*
* @return DeviceInstallState
*/
public function setUserName($val)
{
$this->_propDict["userName"] = $val;
return $this;
}
}