ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * UserExperienceAnalyticsAppHealthDevicePerformanceDetails 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; /** * UserExperienceAnalyticsAppHealthDevicePerformanceDetails 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 UserExperienceAnalyticsAppHealthDevicePerformanceDetails extends Entity { /** * Gets the appDisplayName * The friendly name of the application for which the event occurred. Possible values are: outlook.exe, excel.exe. Supports: $select, $OrderBy. Read-only. * * @return string|null The appDisplayName */ public function getAppDisplayName() { if (array_key_exists("appDisplayName", $this->_propDict)) { return $this->_propDict["appDisplayName"]; } else { return null; } } /** * Sets the appDisplayName * The friendly name of the application for which the event occurred. Possible values are: outlook.exe, excel.exe. Supports: $select, $OrderBy. Read-only. * * @param string $val The appDisplayName * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setAppDisplayName($val) { $this->_propDict["appDisplayName"] = $val; return $this; } /** * Gets the appPublisher * The publisher of the application. Supports: $select, $OrderBy. Read-only. * * @return string|null The appPublisher */ public function getAppPublisher() { if (array_key_exists("appPublisher", $this->_propDict)) { return $this->_propDict["appPublisher"]; } else { return null; } } /** * Sets the appPublisher * The publisher of the application. Supports: $select, $OrderBy. Read-only. * * @param string $val The appPublisher * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setAppPublisher($val) { $this->_propDict["appPublisher"] = $val; return $this; } /** * Gets the appVersion * The version of the application. Possible values are: 1.0.0.1, 75.65.23.9. Supports: $select, $OrderBy. Read-only. * * @return string|null The appVersion */ public function getAppVersion() { if (array_key_exists("appVersion", $this->_propDict)) { return $this->_propDict["appVersion"]; } else { return null; } } /** * Sets the appVersion * The version of the application. Possible values are: 1.0.0.1, 75.65.23.9. Supports: $select, $OrderBy. Read-only. * * @param string $val The appVersion * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setAppVersion($val) { $this->_propDict["appVersion"] = $val; return $this; } /** * Gets the deviceDisplayName * The name of the device. Supports: $select, $OrderBy. Read-only. * * @return string|null The deviceDisplayName */ public function getDeviceDisplayName() { if (array_key_exists("deviceDisplayName", $this->_propDict)) { return $this->_propDict["deviceDisplayName"]; } else { return null; } } /** * Sets the deviceDisplayName * The name of the device. Supports: $select, $OrderBy. Read-only. * * @param string $val The deviceDisplayName * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setDeviceDisplayName($val) { $this->_propDict["deviceDisplayName"] = $val; return $this; } /** * Gets the deviceId * The Intune device id of the device. Supports: $select, $OrderBy. Read-only. * * @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. Supports: $select, $OrderBy. Read-only. * * @param string $val The deviceId * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setDeviceId($val) { $this->_propDict["deviceId"] = $val; return $this; } /** * Gets the eventDateTime * The time the event occurred. The value cannot be modified and is automatically populated when the statistics are computed. 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, 2022 would look like this: '2022-01-01T00:00:00Z'. Returned by default. Read-only. * * @return \DateTime|null The eventDateTime */ public function getEventDateTime() { if (array_key_exists("eventDateTime", $this->_propDict)) { if (is_a($this->_propDict["eventDateTime"], "\DateTime") || is_null($this->_propDict["eventDateTime"])) { return $this->_propDict["eventDateTime"]; } else { $this->_propDict["eventDateTime"] = new \DateTime($this->_propDict["eventDateTime"]); return $this->_propDict["eventDateTime"]; } } return null; } /** * Sets the eventDateTime * The time the event occurred. The value cannot be modified and is automatically populated when the statistics are computed. 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, 2022 would look like this: '2022-01-01T00:00:00Z'. Returned by default. Read-only. * * @param \DateTime $val The eventDateTime * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setEventDateTime($val) { $this->_propDict["eventDateTime"] = $val; return $this; } /** * Gets the eventType * The type of the event. Supports: $select, $OrderBy. Read-only. * * @return string|null The eventType */ public function getEventType() { if (array_key_exists("eventType", $this->_propDict)) { return $this->_propDict["eventType"]; } else { return null; } } /** * Sets the eventType * The type of the event. Supports: $select, $OrderBy. Read-only. * * @param string $val The eventType * * @return UserExperienceAnalyticsAppHealthDevicePerformanceDetails */ public function setEventType($val) { $this->_propDict["eventType"] = $val; return $this; } }
cải xoăn