_propDict)) { return $this->_propDict["disabledPlans"]; } else { return null; } } /** * Sets the disabledPlans * A collection of the unique identifiers for plans that have been disabled. * * @param string $val The value of the disabledPlans * * @return AssignedLicense */ public function setDisabledPlans($val) { $this->_propDict["disabledPlans"] = $val; return $this; } /** * Gets the skuId * The unique identifier for the SKU. * * @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 * The unique identifier for the SKU. * * @param string $val The value of the skuId * * @return AssignedLicense */ public function setSkuId($val) { $this->_propDict["skuId"] = $val; return $this; } }