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/AndroidStoreApp.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * AndroidStoreApp 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; /** * AndroidStoreApp 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 AndroidStoreApp extends MobileApp { /** * Gets the appStoreUrl * The Android app store URL. * * @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 Android app store URL. * * @param string $val The appStoreUrl * * @return AndroidStoreApp */ public function setAppStoreUrl($val) { $this->_propDict["appStoreUrl"] = $val; return $this; } /** * Gets the minimumSupportedOperatingSystem * The value for the minimum applicable operating system. * * @return AndroidMinimumOperatingSystem|null The minimumSupportedOperatingSystem */ public function getMinimumSupportedOperatingSystem() { if (array_key_exists("minimumSupportedOperatingSystem", $this->_propDict)) { if (is_a($this->_propDict["minimumSupportedOperatingSystem"], "\Microsoft\Graph\Model\AndroidMinimumOperatingSystem") || is_null($this->_propDict["minimumSupportedOperatingSystem"])) { return $this->_propDict["minimumSupportedOperatingSystem"]; } else { $this->_propDict["minimumSupportedOperatingSystem"] = new AndroidMinimumOperatingSystem($this->_propDict["minimumSupportedOperatingSystem"]); return $this->_propDict["minimumSupportedOperatingSystem"]; } } return null; } /** * Sets the minimumSupportedOperatingSystem * The value for the minimum applicable operating system. * * @param AndroidMinimumOperatingSystem $val The minimumSupportedOperatingSystem * * @return AndroidStoreApp */ public function setMinimumSupportedOperatingSystem($val) { $this->_propDict["minimumSupportedOperatingSystem"] = $val; return $this; } /** * Gets the packageId * The package identifier. * * @return string|null The packageId */ public function getPackageId() { if (array_key_exists("packageId", $this->_propDict)) { return $this->_propDict["packageId"]; } else { return null; } } /** * Sets the packageId * The package identifier. * * @param string $val The packageId * * @return AndroidStoreApp */ public function setPackageId($val) { $this->_propDict["packageId"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia