whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/microsoft/microsoft-graph/src/Model/MacOSLobApp.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * MacOSLobApp 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; /** * MacOSLobApp 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 MacOSLobApp extends MobileLobApp { /** * Gets the buildNumber * The build number of the package. This should match the package CFBundleShortVersionString of the .pkg file. * * @return string|null The buildNumber */ public function getBuildNumber() { if (array_key_exists("buildNumber", $this->_propDict)) { return $this->_propDict["buildNumber"]; } else { return null; } } /** * Sets the buildNumber * The build number of the package. This should match the package CFBundleShortVersionString of the .pkg file. * * @param string $val The buildNumber * * @return MacOSLobApp */ public function setBuildNumber($val) { $this->_propDict["buildNumber"] = $val; return $this; } /** * Gets the bundleId * The primary bundleId of the package. * * @return string|null The bundleId */ public function getBundleId() { if (array_key_exists("bundleId", $this->_propDict)) { return $this->_propDict["bundleId"]; } else { return null; } } /** * Sets the bundleId * The primary bundleId of the package. * * @param string $val The bundleId * * @return MacOSLobApp */ public function setBundleId($val) { $this->_propDict["bundleId"] = $val; return $this; } /** * Gets the childApps * List of ComplexType macOSLobChildApp objects. Represents the apps expected to be installed by the package. * * @return array|null The childApps */ public function getChildApps() { if (array_key_exists("childApps", $this->_propDict)) { return $this->_propDict["childApps"]; } else { return null; } } /** * Sets the childApps * List of ComplexType macOSLobChildApp objects. Represents the apps expected to be installed by the package. * * @param MacOSLobChildApp[] $val The childApps * * @return MacOSLobApp */ public function setChildApps($val) { $this->_propDict["childApps"] = $val; return $this; } /** * Gets the ignoreVersionDetection * When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature. * * @return bool|null The ignoreVersionDetection */ public function getIgnoreVersionDetection() { if (array_key_exists("ignoreVersionDetection", $this->_propDict)) { return $this->_propDict["ignoreVersionDetection"]; } else { return null; } } /** * Sets the ignoreVersionDetection * When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature. * * @param bool $val The ignoreVersionDetection * * @return MacOSLobApp */ public function setIgnoreVersionDetection($val) { $this->_propDict["ignoreVersionDetection"] = boolval($val); return $this; } /** * Gets the installAsManaged * When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged. * * @return bool|null The installAsManaged */ public function getInstallAsManaged() { if (array_key_exists("installAsManaged", $this->_propDict)) { return $this->_propDict["installAsManaged"]; } else { return null; } } /** * Sets the installAsManaged * When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged. * * @param bool $val The installAsManaged * * @return MacOSLobApp */ public function setInstallAsManaged($val) { $this->_propDict["installAsManaged"] = boolval($val); return $this; } /** * Gets the md5Hash * The MD5 hash codes. This is empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file. * * @return array|null The md5Hash */ public function getMd5Hash() { if (array_key_exists("md5Hash", $this->_propDict)) { return $this->_propDict["md5Hash"]; } else { return null; } } /** * Sets the md5Hash * The MD5 hash codes. This is empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file. * * @param string[] $val The md5Hash * * @return MacOSLobApp */ public function setMd5Hash($val) { $this->_propDict["md5Hash"] = $val; return $this; } /** * Gets the md5HashChunkSize * The chunk size for MD5 hash. This is '0' or empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file. * * @return int|null The md5HashChunkSize */ public function getMd5HashChunkSize() { if (array_key_exists("md5HashChunkSize", $this->_propDict)) { return $this->_propDict["md5HashChunkSize"]; } else { return null; } } /** * Sets the md5HashChunkSize * The chunk size for MD5 hash. This is '0' or empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file. * * @param int $val The md5HashChunkSize * * @return MacOSLobApp */ public function setMd5HashChunkSize($val) { $this->_propDict["md5HashChunkSize"] = intval($val); return $this; } /** * Gets the minimumSupportedOperatingSystem * ComplexType macOSMinimumOperatingSystem that indicates the minimum operating system applicable for the application. * * @return MacOSMinimumOperatingSystem|null The minimumSupportedOperatingSystem */ public function getMinimumSupportedOperatingSystem() { if (array_key_exists("minimumSupportedOperatingSystem", $this->_propDict)) { if (is_a($this->_propDict["minimumSupportedOperatingSystem"], "\Microsoft\Graph\Model\MacOSMinimumOperatingSystem") || is_null($this->_propDict["minimumSupportedOperatingSystem"])) { return $this->_propDict["minimumSupportedOperatingSystem"]; } else { $this->_propDict["minimumSupportedOperatingSystem"] = new MacOSMinimumOperatingSystem($this->_propDict["minimumSupportedOperatingSystem"]); return $this->_propDict["minimumSupportedOperatingSystem"]; } } return null; } /** * Sets the minimumSupportedOperatingSystem * ComplexType macOSMinimumOperatingSystem that indicates the minimum operating system applicable for the application. * * @param MacOSMinimumOperatingSystem $val The minimumSupportedOperatingSystem * * @return MacOSLobApp */ public function setMinimumSupportedOperatingSystem($val) { $this->_propDict["minimumSupportedOperatingSystem"] = $val; return $this; } /** * Gets the versionNumber * The version number of the package. This should match the package CFBundleVersion in the packageinfo file. * * @return string|null The versionNumber */ public function getVersionNumber() { if (array_key_exists("versionNumber", $this->_propDict)) { return $this->_propDict["versionNumber"]; } else { return null; } } /** * Sets the versionNumber * The version number of the package. This should match the package CFBundleVersion in the packageinfo file. * * @param string $val The versionNumber * * @return MacOSLobApp */ public function setVersionNumber($val) { $this->_propDict["versionNumber"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia