1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationRubricOutcome.php

148 lines
4.5 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* EducationRubricOutcome 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 Beta\Microsoft\Graph\Model;
/**
* EducationRubricOutcome 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 EducationRubricOutcome extends EducationOutcome
{
/**
* Gets the publishedRubricQualityFeedback
* A copy of the rubricQualityFeedback property that is made when the grade is released to the student.
*
* @return array|null The publishedRubricQualityFeedback
*/
public function getPublishedRubricQualityFeedback()
{
if (array_key_exists("publishedRubricQualityFeedback", $this->_propDict)) {
return $this->_propDict["publishedRubricQualityFeedback"];
} else {
return null;
}
}
/**
* Sets the publishedRubricQualityFeedback
* A copy of the rubricQualityFeedback property that is made when the grade is released to the student.
*
* @param RubricQualityFeedbackModel[] $val The publishedRubricQualityFeedback
*
* @return EducationRubricOutcome
*/
public function setPublishedRubricQualityFeedback($val)
{
$this->_propDict["publishedRubricQualityFeedback"] = $val;
return $this;
}
/**
* Gets the publishedRubricQualitySelectedLevels
* A copy of the rubricQualitySelectedLevels property that is made when the grade is released to the student.
*
* @return array|null The publishedRubricQualitySelectedLevels
*/
public function getPublishedRubricQualitySelectedLevels()
{
if (array_key_exists("publishedRubricQualitySelectedLevels", $this->_propDict)) {
return $this->_propDict["publishedRubricQualitySelectedLevels"];
} else {
return null;
}
}
/**
* Sets the publishedRubricQualitySelectedLevels
* A copy of the rubricQualitySelectedLevels property that is made when the grade is released to the student.
*
* @param RubricQualitySelectedColumnModel[] $val The publishedRubricQualitySelectedLevels
*
* @return EducationRubricOutcome
*/
public function setPublishedRubricQualitySelectedLevels($val)
{
$this->_propDict["publishedRubricQualitySelectedLevels"] = $val;
return $this;
}
/**
* Gets the rubricQualityFeedback
* A collection of specific feedback for each quality of this rubric.
*
* @return array|null The rubricQualityFeedback
*/
public function getRubricQualityFeedback()
{
if (array_key_exists("rubricQualityFeedback", $this->_propDict)) {
return $this->_propDict["rubricQualityFeedback"];
} else {
return null;
}
}
/**
* Sets the rubricQualityFeedback
* A collection of specific feedback for each quality of this rubric.
*
* @param RubricQualityFeedbackModel[] $val The rubricQualityFeedback
*
* @return EducationRubricOutcome
*/
public function setRubricQualityFeedback($val)
{
$this->_propDict["rubricQualityFeedback"] = $val;
return $this;
}
/**
* Gets the rubricQualitySelectedLevels
* The level that the teacher has selected for each quality while grading this assignment.
*
* @return array|null The rubricQualitySelectedLevels
*/
public function getRubricQualitySelectedLevels()
{
if (array_key_exists("rubricQualitySelectedLevels", $this->_propDict)) {
return $this->_propDict["rubricQualitySelectedLevels"];
} else {
return null;
}
}
/**
* Sets the rubricQualitySelectedLevels
* The level that the teacher has selected for each quality while grading this assignment.
*
* @param RubricQualitySelectedColumnModel[] $val The rubricQualitySelectedLevels
*
* @return EducationRubricOutcome
*/
public function setRubricQualitySelectedLevels($val)
{
$this->_propDict["rubricQualitySelectedLevels"] = $val;
return $this;
}
}