FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: ServicePlanInfo.php
<?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; } }
Save
Back