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

83 lines
2.1 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* SortProperty 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;
/**
* SortProperty 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 SortProperty extends Entity
{
/**
* Gets the isDescending
* True if the sort order is descending. Default is false, with the sort order as ascending. Optional.
*
* @return bool|null The isDescending
*/
public function getIsDescending()
{
if (array_key_exists("isDescending", $this->_propDict)) {
return $this->_propDict["isDescending"];
} else {
return null;
}
}
/**
* Sets the isDescending
* True if the sort order is descending. Default is false, with the sort order as ascending. Optional.
*
* @param bool $val The value of the isDescending
*
* @return SortProperty
*/
public function setIsDescending($val)
{
$this->_propDict["isDescending"] = $val;
return $this;
}
/**
* Gets the name
* The name of the property to sort on. Required.
*
* @return string|null The name
*/
public function getName()
{
if (array_key_exists("name", $this->_propDict)) {
return $this->_propDict["name"];
} else {
return null;
}
}
/**
* Sets the name
* The name of the property to sort on. Required.
*
* @param string $val The value of the name
*
* @return SortProperty
*/
public function setName($val)
{
$this->_propDict["name"] = $val;
return $this;
}
}