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 : /var/www/hopeinstoughton_www/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.
*
* VppToken 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;
/**
* VppToken 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 VppToken extends Entity
{
/**
* Gets the appleId
* The apple Id associated with the given Apple Volume Purchase Program Token.
*
* @return string|null The appleId
*/
public function getAppleId()
{
if (array_key_exists("appleId", $this->_propDict)) {
return $this->_propDict["appleId"];
} else {
return null;
}
}
/**
* Sets the appleId
* The apple Id associated with the given Apple Volume Purchase Program Token.
*
* @param string $val The appleId
*
* @return VppToken
*/
public function setAppleId($val)
{
$this->_propDict["appleId"] = $val;
return $this;
}
/**
* Gets the automaticallyUpdateApps
* Whether or not apps for the VPP token will be automatically updated.
*
* @return bool|null The automaticallyUpdateApps
*/
public function getAutomaticallyUpdateApps()
{
if (array_key_exists("automaticallyUpdateApps", $this->_propDict)) {
return $this->_propDict["automaticallyUpdateApps"];
} else {
return null;
}
}
/**
* Sets the automaticallyUpdateApps
* Whether or not apps for the VPP token will be automatically updated.
*
* @param bool $val The automaticallyUpdateApps
*
* @return VppToken
*/
public function setAutomaticallyUpdateApps($val)
{
$this->_propDict["automaticallyUpdateApps"] = boolval($val);
return $this;
}
/**
* Gets the countryOrRegion
* Whether or not apps for the VPP token will be automatically updated.
*
* @return string|null The countryOrRegion
*/
public function getCountryOrRegion()
{
if (array_key_exists("countryOrRegion", $this->_propDict)) {
return $this->_propDict["countryOrRegion"];
} else {
return null;
}
}
/**
* Sets the countryOrRegion
* Whether or not apps for the VPP token will be automatically updated.
*
* @param string $val The countryOrRegion
*
* @return VppToken
*/
public function setCountryOrRegion($val)
{
$this->_propDict["countryOrRegion"] = $val;
return $this;
}
/**
* Gets the expirationDateTime
* The expiration date time of the Apple Volume Purchase Program Token.
*
* @return \DateTime|null The expirationDateTime
*/
public function getExpirationDateTime()
{
if (array_key_exists("expirationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["expirationDateTime"], "\DateTime") || is_null($this->_propDict["expirationDateTime"])) {
return $this->_propDict["expirationDateTime"];
} else {
$this->_propDict["expirationDateTime"] = new \DateTime($this->_propDict["expirationDateTime"]);
return $this->_propDict["expirationDateTime"];
}
}
return null;
}
/**
* Sets the expirationDateTime
* The expiration date time of the Apple Volume Purchase Program Token.
*
* @param \DateTime $val The expirationDateTime
*
* @return VppToken
*/
public function setExpirationDateTime($val)
{
$this->_propDict["expirationDateTime"] = $val;
return $this;
}
/**
* Gets the lastModifiedDateTime
* Last modification date time associated with the Apple Volume Purchase Program Token.
*
* @return \DateTime|null The lastModifiedDateTime
*/
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
}
/**
* Sets the lastModifiedDateTime
* Last modification date time associated with the Apple Volume Purchase Program Token.
*
* @param \DateTime $val The lastModifiedDateTime
*
* @return VppToken
*/
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
}
/**
* Gets the lastSyncDateTime
* The last time when an application sync was done with the Apple volume purchase program service using the the Apple Volume Purchase Program Token.
*
* @return \DateTime|null The lastSyncDateTime
*/
public function getLastSyncDateTime()
{
if (array_key_exists("lastSyncDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastSyncDateTime"], "\DateTime") || is_null($this->_propDict["lastSyncDateTime"])) {
return $this->_propDict["lastSyncDateTime"];
} else {
$this->_propDict["lastSyncDateTime"] = new \DateTime($this->_propDict["lastSyncDateTime"]);
return $this->_propDict["lastSyncDateTime"];
}
}
return null;
}
/**
* Sets the lastSyncDateTime
* The last time when an application sync was done with the Apple volume purchase program service using the the Apple Volume Purchase Program Token.
*
* @param \DateTime $val The lastSyncDateTime
*
* @return VppToken
*/
public function setLastSyncDateTime($val)
{
$this->_propDict["lastSyncDateTime"] = $val;
return $this;
}
/**
* Gets the lastSyncStatus
* Current sync status of the last application sync which was triggered using the Apple Volume Purchase Program Token. Possible values are: none, inProgress, completed, failed. Possible values are: none, inProgress, completed, failed.
*
* @return VppTokenSyncStatus|null The lastSyncStatus
*/
public function getLastSyncStatus()
{
if (array_key_exists("lastSyncStatus", $this->_propDict)) {
if (is_a($this->_propDict["lastSyncStatus"], "\Microsoft\Graph\Model\VppTokenSyncStatus") || is_null($this->_propDict["lastSyncStatus"])) {
return $this->_propDict["lastSyncStatus"];
} else {
$this->_propDict["lastSyncStatus"] = new VppTokenSyncStatus($this->_propDict["lastSyncStatus"]);
return $this->_propDict["lastSyncStatus"];
}
}
return null;
}
/**
* Sets the lastSyncStatus
* Current sync status of the last application sync which was triggered using the Apple Volume Purchase Program Token. Possible values are: none, inProgress, completed, failed. Possible values are: none, inProgress, completed, failed.
*
* @param VppTokenSyncStatus $val The lastSyncStatus
*
* @return VppToken
*/
public function setLastSyncStatus($val)
{
$this->_propDict["lastSyncStatus"] = $val;
return $this;
}
/**
* Gets the organizationName
* The organization associated with the Apple Volume Purchase Program Token
*
* @return string|null The organizationName
*/
public function getOrganizationName()
{
if (array_key_exists("organizationName", $this->_propDict)) {
return $this->_propDict["organizationName"];
} else {
return null;
}
}
/**
* Sets the organizationName
* The organization associated with the Apple Volume Purchase Program Token
*
* @param string $val The organizationName
*
* @return VppToken
*/
public function setOrganizationName($val)
{
$this->_propDict["organizationName"] = $val;
return $this;
}
/**
* Gets the state
* Current state of the Apple Volume Purchase Program Token. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM.
*
* @return VppTokenState|null The state
*/
public function getState()
{
if (array_key_exists("state", $this->_propDict)) {
if (is_a($this->_propDict["state"], "\Microsoft\Graph\Model\VppTokenState") || is_null($this->_propDict["state"])) {
return $this->_propDict["state"];
} else {
$this->_propDict["state"] = new VppTokenState($this->_propDict["state"]);
return $this->_propDict["state"];
}
}
return null;
}
/**
* Sets the state
* Current state of the Apple Volume Purchase Program Token. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM.
*
* @param VppTokenState $val The state
*
* @return VppToken
*/
public function setState($val)
{
$this->_propDict["state"] = $val;
return $this;
}
/**
* Gets the token
* The Apple Volume Purchase Program Token string downloaded from the Apple Volume Purchase Program.
*
* @return string|null The token
*/
public function getToken()
{
if (array_key_exists("token", $this->_propDict)) {
return $this->_propDict["token"];
} else {
return null;
}
}
/**
* Sets the token
* The Apple Volume Purchase Program Token string downloaded from the Apple Volume Purchase Program.
*
* @param string $val The token
*
* @return VppToken
*/
public function setToken($val)
{
$this->_propDict["token"] = $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 VppToken
*/
public function setVppTokenAccountType($val)
{
$this->_propDict["vppTokenAccountType"] = $val;
return $this;
}
}