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/ManagedIOSStoreApp.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ManagedIOSStoreApp 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; /** * ManagedIOSStoreApp 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 ManagedIOSStoreApp extends ManagedApp { /** * Gets the applicableDeviceType * The iOS architecture for which this app can run on. * * @return IosDeviceType|null The applicableDeviceType */ public function getApplicableDeviceType() { if (array_key_exists("applicableDeviceType", $this->_propDict)) { if (is_a($this->_propDict["applicableDeviceType"], "\Microsoft\Graph\Model\IosDeviceType") || is_null($this->_propDict["applicableDeviceType"])) { return $this->_propDict["applicableDeviceType"]; } else { $this->_propDict["applicableDeviceType"] = new IosDeviceType($this->_propDict["applicableDeviceType"]); return $this->_propDict["applicableDeviceType"]; } } return null; } /** * Sets the applicableDeviceType * The iOS architecture for which this app can run on. * * @param IosDeviceType $val The applicableDeviceType * * @return ManagedIOSStoreApp */ public function setApplicableDeviceType($val) { $this->_propDict["applicableDeviceType"] = $val; return $this; } /** * Gets the appStoreUrl * The Apple AppStoreUrl. * * @return string|null The appStoreUrl */ public function getAppStoreUrl() { if (array_key_exists("appStoreUrl", $this->_propDict)) { return $this->_propDict["appStoreUrl"]; } else { return null; } } /** * Sets the appStoreUrl * The Apple AppStoreUrl. * * @param string $val The appStoreUrl * * @return ManagedIOSStoreApp */ public function setAppStoreUrl($val) { $this->_propDict["appStoreUrl"] = $val; return $this; } /** * Gets the bundleId * The app's Bundle ID. * * @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 app's Bundle ID. * * @param string $val The bundleId * * @return ManagedIOSStoreApp */ public function setBundleId($val) { $this->_propDict["bundleId"] = $val; return $this; } /** * Gets the minimumSupportedOperatingSystem * The value for the minimum supported operating system. * * @return IosMinimumOperatingSystem|null The minimumSupportedOperatingSystem */ public function getMinimumSupportedOperatingSystem() { if (array_key_exists("minimumSupportedOperatingSystem", $this->_propDict)) { if (is_a($this->_propDict["minimumSupportedOperatingSystem"], "\Microsoft\Graph\Model\IosMinimumOperatingSystem") || is_null($this->_propDict["minimumSupportedOperatingSystem"])) { return $this->_propDict["minimumSupportedOperatingSystem"]; } else { $this->_propDict["minimumSupportedOperatingSystem"] = new IosMinimumOperatingSystem($this->_propDict["minimumSupportedOperatingSystem"]); return $this->_propDict["minimumSupportedOperatingSystem"]; } } return null; } /** * Sets the minimumSupportedOperatingSystem * The value for the minimum supported operating system. * * @param IosMinimumOperatingSystem $val The minimumSupportedOperatingSystem * * @return ManagedIOSStoreApp */ public function setMinimumSupportedOperatingSystem($val) { $this->_propDict["minimumSupportedOperatingSystem"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia