_propDict)) { return $this->_propDict["activeDeviceCount"]; } else { return null; } } /** * Sets the activeDeviceCount * The number of active devices for the OS version. Valid values 0 to 2147483647. Supports: $filter, $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647 * * @param int $val The activeDeviceCount * * @return UserExperienceAnalyticsAppHealthOSVersionPerformance */ public function setActiveDeviceCount($val) { $this->_propDict["activeDeviceCount"] = intval($val); return $this; } /** * Gets the meanTimeToFailureInMinutes * The mean time to failure for the application in minutes. Valid values 0 to 2147483647. Supports: $filter, $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647 * * @return int|null The meanTimeToFailureInMinutes */ public function getMeanTimeToFailureInMinutes() { if (array_key_exists("meanTimeToFailureInMinutes", $this->_propDict)) { return $this->_propDict["meanTimeToFailureInMinutes"]; } else { return null; } } /** * Sets the meanTimeToFailureInMinutes * The mean time to failure for the application in minutes. Valid values 0 to 2147483647. Supports: $filter, $select, $OrderBy. Read-only. Valid values -2147483648 to 2147483647 * * @param int $val The meanTimeToFailureInMinutes * * @return UserExperienceAnalyticsAppHealthOSVersionPerformance */ public function setMeanTimeToFailureInMinutes($val) { $this->_propDict["meanTimeToFailureInMinutes"] = intval($val); return $this; } /** * Gets the osBuildNumber * The OS build number installed on the device. Supports: $select, $OrderBy. Read-only. * * @return string|null The osBuildNumber */ public function getOsBuildNumber() { if (array_key_exists("osBuildNumber", $this->_propDict)) { return $this->_propDict["osBuildNumber"]; } else { return null; } } /** * Sets the osBuildNumber * The OS build number installed on the device. Supports: $select, $OrderBy. Read-only. * * @param string $val The osBuildNumber * * @return UserExperienceAnalyticsAppHealthOSVersionPerformance */ public function setOsBuildNumber($val) { $this->_propDict["osBuildNumber"] = $val; return $this; } /** * Gets the osVersion * The OS version installed on the device. Supports: $select, $OrderBy. Read-only. * * @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 * The OS version installed on the device. Supports: $select, $OrderBy. Read-only. * * @param string $val The osVersion * * @return UserExperienceAnalyticsAppHealthOSVersionPerformance */ public function setOsVersion($val) { $this->_propDict["osVersion"] = $val; return $this; } /** * Gets the osVersionAppHealthScore * The application health score of the OS version. Valid values 0 to 100. Supports: $filter, $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 * * @return float|null The osVersionAppHealthScore */ public function getOsVersionAppHealthScore() { if (array_key_exists("osVersionAppHealthScore", $this->_propDict)) { return $this->_propDict["osVersionAppHealthScore"]; } else { return null; } } /** * Sets the osVersionAppHealthScore * The application health score of the OS version. Valid values 0 to 100. Supports: $filter, $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 * * @param float $val The osVersionAppHealthScore * * @return UserExperienceAnalyticsAppHealthOSVersionPerformance */ public function setOsVersionAppHealthScore($val) { $this->_propDict["osVersionAppHealthScore"] = floatval($val); return $this; } }