FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: LicenseDetails.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * LicenseDetails 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; /** * LicenseDetails 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 LicenseDetails extends Entity { /** * Gets the servicePlans * Information about the service plans assigned with the license. Read-only, Not nullable * * @return array|null The servicePlans */ public function getServicePlans() { if (array_key_exists("servicePlans", $this->_propDict)) { return $this->_propDict["servicePlans"]; } else { return null; } } /** * Sets the servicePlans * Information about the service plans assigned with the license. Read-only, Not nullable * * @param ServicePlanInfo[] $val The servicePlans * * @return LicenseDetails */ public function setServicePlans($val) { $this->_propDict["servicePlans"] = $val; return $this; } /** * Gets the skuId * Unique identifier (GUID) for the service SKU. Equal to the skuId property on the related SubscribedSku object. Read-only * * @return string|null The skuId */ public function getSkuId() { if (array_key_exists("skuId", $this->_propDict)) { return $this->_propDict["skuId"]; } else { return null; } } /** * Sets the skuId * Unique identifier (GUID) for the service SKU. Equal to the skuId property on the related SubscribedSku object. Read-only * * @param string $val The skuId * * @return LicenseDetails */ public function setSkuId($val) { $this->_propDict["skuId"] = $val; return $this; } /** * Gets the skuPartNumber * Unique SKU display name. Equal to the skuPartNumber on the related SubscribedSku object; for example: 'AAD_Premium'. Read-only * * @return string|null The skuPartNumber */ public function getSkuPartNumber() { if (array_key_exists("skuPartNumber", $this->_propDict)) { return $this->_propDict["skuPartNumber"]; } else { return null; } } /** * Sets the skuPartNumber * Unique SKU display name. Equal to the skuPartNumber on the related SubscribedSku object; for example: 'AAD_Premium'. Read-only * * @param string $val The skuPartNumber * * @return LicenseDetails */ public function setSkuPartNumber($val) { $this->_propDict["skuPartNumber"] = $val; return $this; } }
Save
Back