ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * UserExperienceAnalyticsMetricHistory 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; /** * UserExperienceAnalyticsMetricHistory 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 UserExperienceAnalyticsMetricHistory extends Entity { /** * Gets the deviceId * The Intune device id of the device. * * @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 * The Intune device id of the device. * * @param string $val The deviceId * * @return UserExperienceAnalyticsMetricHistory */ public function setDeviceId($val) { $this->_propDict["deviceId"] = $val; return $this; } /** * Gets the metricDateTime * The metric date time. The value cannot be modified and is automatically populated when the metric is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Returned by default. * * @return \DateTime|null The metricDateTime */ public function getMetricDateTime() { if (array_key_exists("metricDateTime", $this->_propDict)) { if (is_a($this->_propDict["metricDateTime"], "\DateTime") || is_null($this->_propDict["metricDateTime"])) { return $this->_propDict["metricDateTime"]; } else { $this->_propDict["metricDateTime"] = new \DateTime($this->_propDict["metricDateTime"]); return $this->_propDict["metricDateTime"]; } } return null; } /** * Sets the metricDateTime * The metric date time. The value cannot be modified and is automatically populated when the metric is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Returned by default. * * @param \DateTime $val The metricDateTime * * @return UserExperienceAnalyticsMetricHistory */ public function setMetricDateTime($val) { $this->_propDict["metricDateTime"] = $val; return $this; } /** * Gets the metricType * The user experience analytics metric type. * * @return string|null The metricType */ public function getMetricType() { if (array_key_exists("metricType", $this->_propDict)) { return $this->_propDict["metricType"]; } else { return null; } } /** * Sets the metricType * The user experience analytics metric type. * * @param string $val The metricType * * @return UserExperienceAnalyticsMetricHistory */ public function setMetricType($val) { $this->_propDict["metricType"] = $val; return $this; } }
cải xoăn