_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; } }