ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * RubricQualitySelectedColumnModel 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; /** * RubricQualitySelectedColumnModel 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 RubricQualitySelectedColumnModel extends Entity { /** * Gets the columnId * ID of the selected level for this quality. * * @return string|null The columnId */ public function getColumnId() { if (array_key_exists("columnId", $this->_propDict)) { return $this->_propDict["columnId"]; } else { return null; } } /** * Sets the columnId * ID of the selected level for this quality. * * @param string $val The value of the columnId * * @return RubricQualitySelectedColumnModel */ public function setColumnId($val) { $this->_propDict["columnId"] = $val; return $this; } /** * Gets the qualityId * ID of the associated quality. * * @return string|null The qualityId */ public function getQualityId() { if (array_key_exists("qualityId", $this->_propDict)) { return $this->_propDict["qualityId"]; } else { return null; } } /** * Sets the qualityId * ID of the associated quality. * * @param string $val The value of the qualityId * * @return RubricQualitySelectedColumnModel */ public function setQualityId($val) { $this->_propDict["qualityId"] = $val; return $this; } }
cải xoăn