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.
*
* IosVppApp 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;
/**
* IosVppApp 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 IosVppApp extends MobileApp
{
/**
* Gets the applicableDeviceType
* The applicable iOS Device Type.
*
* @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 applicable iOS Device Type.
*
* @param IosDeviceType $val The applicableDeviceType
*
* @return IosVppApp
*/
public function setApplicableDeviceType($val)
{
$this->_propDict["applicableDeviceType"] = $val;
return $this;
}
/**
* Gets the appStoreUrl
* The 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 store URL.
*
* @param string $val The appStoreUrl
*
* @return IosVppApp
*/
public function setAppStoreUrl($val)
{
$this->_propDict["appStoreUrl"] = $val;
return $this;
}
/**
* Gets the bundleId
* The Identity Name.
*
* @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 Identity Name.
*
* @param string $val The bundleId
*
* @return IosVppApp
*/
public function setBundleId($val)
{
$this->_propDict["bundleId"] = $val;
return $this;
}
/**
* Gets the licensingType
* The supported License Type.
*
* @return VppLicensingType|null The licensingType
*/
public function getLicensingType()
{
if (array_key_exists("licensingType", $this->_propDict)) {
if (is_a($this->_propDict["licensingType"], "\Microsoft\Graph\Model\VppLicensingType") || is_null($this->_propDict["licensingType"])) {
return $this->_propDict["licensingType"];
} else {
$this->_propDict["licensingType"] = new VppLicensingType($this->_propDict["licensingType"]);
return $this->_propDict["licensingType"];
}
}
return null;
}
/**
* Sets the licensingType
* The supported License Type.
*
* @param VppLicensingType $val The licensingType
*
* @return IosVppApp
*/
public function setLicensingType($val)
{
$this->_propDict["licensingType"] = $val;
return $this;
}
/**
* Gets the releaseDateTime
* The VPP application release date and time.
*
* @return \DateTime|null The releaseDateTime
*/
public function getReleaseDateTime()
{
if (array_key_exists("releaseDateTime", $this->_propDict)) {
if (is_a($this->_propDict["releaseDateTime"], "\DateTime") || is_null($this->_propDict["releaseDateTime"])) {
return $this->_propDict["releaseDateTime"];
} else {
$this->_propDict["releaseDateTime"] = new \DateTime($this->_propDict["releaseDateTime"]);
return $this->_propDict["releaseDateTime"];
}
}
return null;
}
/**
* Sets the releaseDateTime
* The VPP application release date and time.
*
* @param \DateTime $val The releaseDateTime
*
* @return IosVppApp
*/
public function setReleaseDateTime($val)
{
$this->_propDict["releaseDateTime"] = $val;
return $this;
}
/**
* Gets the totalLicenseCount
* The total number of VPP 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 VPP licenses.
*
* @param int $val The totalLicenseCount
*
* @return IosVppApp
*/
public function setTotalLicenseCount($val)
{
$this->_propDict["totalLicenseCount"] = intval($val);
return $this;
}
/**
* Gets the usedLicenseCount
* The number of VPP 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 VPP licenses in use.
*
* @param int $val The usedLicenseCount
*
* @return IosVppApp
*/
public function setUsedLicenseCount($val)
{
$this->_propDict["usedLicenseCount"] = intval($val);
return $this;
}
/**
* Gets the vppTokenAccountType
* The type of volume purchase program which the given Apple Volume Purchase Program Token is associated with. Possible values are: business, education. Possible values are: business, education.
*
* @return VppTokenAccountType|null The vppTokenAccountType
*/
public function getVppTokenAccountType()
{
if (array_key_exists("vppTokenAccountType", $this->_propDict)) {
if (is_a($this->_propDict["vppTokenAccountType"], "\Microsoft\Graph\Model\VppTokenAccountType") || is_null($this->_propDict["vppTokenAccountType"])) {
return $this->_propDict["vppTokenAccountType"];
} else {
$this->_propDict["vppTokenAccountType"] = new VppTokenAccountType($this->_propDict["vppTokenAccountType"]);
return $this->_propDict["vppTokenAccountType"];
}
}
return null;
}
/**
* Sets the vppTokenAccountType
* The type of volume purchase program which the given Apple Volume Purchase Program Token is associated with. Possible values are: business, education. Possible values are: business, education.
*
* @param VppTokenAccountType $val The vppTokenAccountType
*
* @return IosVppApp
*/
public function setVppTokenAccountType($val)
{
$this->_propDict["vppTokenAccountType"] = $val;
return $this;
}
/**
* Gets the vppTokenAppleId
* The Apple Id associated with the given Apple Volume Purchase Program Token.
*
* @return string|null The vppTokenAppleId
*/
public function getVppTokenAppleId()
{
if (array_key_exists("vppTokenAppleId", $this->_propDict)) {
return $this->_propDict["vppTokenAppleId"];
} else {
return null;
}
}
/**
* Sets the vppTokenAppleId
* The Apple Id associated with the given Apple Volume Purchase Program Token.
*
* @param string $val The vppTokenAppleId
*
* @return IosVppApp
*/
public function setVppTokenAppleId($val)
{
$this->_propDict["vppTokenAppleId"] = $val;
return $this;
}
/**
* Gets the vppTokenOrganizationName
* The organization associated with the Apple Volume Purchase Program Token
*
* @return string|null The vppTokenOrganizationName
*/
public function getVppTokenOrganizationName()
{
if (array_key_exists("vppTokenOrganizationName", $this->_propDict)) {
return $this->_propDict["vppTokenOrganizationName"];
} else {
return null;
}
}
/**
* Sets the vppTokenOrganizationName
* The organization associated with the Apple Volume Purchase Program Token
*
* @param string $val The vppTokenOrganizationName
*
* @return IosVppApp
*/
public function setVppTokenOrganizationName($val)
{
$this->_propDict["vppTokenOrganizationName"] = $val;
return $this;
}
}