Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* MicrosoftStoreForBusinessApp 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;
/**
* MicrosoftStoreForBusinessApp 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 MicrosoftStoreForBusinessApp extends MobileApp
{
/**
* Gets the licenseType
* The app license type. Possible values are: offline, online.
*
* @return MicrosoftStoreForBusinessLicenseType|null The licenseType
*/
public function getLicenseType()
{
if (array_key_exists("licenseType", $this->_propDict)) {
if (is_a($this->_propDict["licenseType"], "\Microsoft\Graph\Model\MicrosoftStoreForBusinessLicenseType") || is_null($this->_propDict["licenseType"])) {
return $this->_propDict["licenseType"];
} else {
$this->_propDict["licenseType"] = new MicrosoftStoreForBusinessLicenseType($this->_propDict["licenseType"]);
return $this->_propDict["licenseType"];
}
}
return null;
}
/**
* Sets the licenseType
* The app license type. Possible values are: offline, online.
*
* @param MicrosoftStoreForBusinessLicenseType $val The licenseType
*
* @return MicrosoftStoreForBusinessApp
*/
public function setLicenseType($val)
{
$this->_propDict["licenseType"] = $val;
return $this;
}
/**
* Gets the packageIdentityName
* The app package identifier
*
* @return string|null The packageIdentityName
*/
public function getPackageIdentityName()
{
if (array_key_exists("packageIdentityName", $this->_propDict)) {
return $this->_propDict["packageIdentityName"];
} else {
return null;
}
}
/**
* Sets the packageIdentityName
* The app package identifier
*
* @param string $val The packageIdentityName
*
* @return MicrosoftStoreForBusinessApp
*/
public function setPackageIdentityName($val)
{
$this->_propDict["packageIdentityName"] = $val;
return $this;
}
/**
* Gets the productKey
* The app product key
*
* @return string|null The productKey
*/
public function getProductKey()
{
if (array_key_exists("productKey", $this->_propDict)) {
return $this->_propDict["productKey"];
} else {
return null;
}
}
/**
* Sets the productKey
* The app product key
*
* @param string $val The productKey
*
* @return MicrosoftStoreForBusinessApp
*/
public function setProductKey($val)
{
$this->_propDict["productKey"] = $val;
return $this;
}
/**
* Gets the totalLicenseCount
* The total number of Microsoft Store for Business licenses.
*
* @return int|null The totalLicenseCount
*/
public function getTotalLicenseCount()
{
if (array_key_exists("totalLicenseCount", $this->_propDict)) {
return $this->_propDict["totalLicenseCount"];
} else {
return null;
}
}
/**
* Sets the totalLicenseCount
* The total number of Microsoft Store for Business licenses.
*
* @param int $val The totalLicenseCount
*
* @return MicrosoftStoreForBusinessApp
*/
public function setTotalLicenseCount($val)
{
$this->_propDict["totalLicenseCount"] = intval($val);
return $this;
}
/**
* Gets the usedLicenseCount
* The number of Microsoft Store for Business licenses in use.
*
* @return int|null The usedLicenseCount
*/
public function getUsedLicenseCount()
{
if (array_key_exists("usedLicenseCount", $this->_propDict)) {
return $this->_propDict["usedLicenseCount"];
} else {
return null;
}
}
/**
* Sets the usedLicenseCount
* The number of Microsoft Store for Business licenses in use.
*
* @param int $val The usedLicenseCount
*
* @return MicrosoftStoreForBusinessApp
*/
public function setUsedLicenseCount($val)
{
$this->_propDict["usedLicenseCount"] = intval($val);
return $this;
}
}