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

79 lines
1.8 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* WorkbookFilterDatetime 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;
/**
* WorkbookFilterDatetime 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 WorkbookFilterDatetime extends Entity
{
/**
* Gets the date
*
* @return string|null The date
*/
public function getDate()
{
if (array_key_exists("date", $this->_propDict)) {
return $this->_propDict["date"];
} else {
return null;
}
}
/**
* Sets the date
*
* @param string $val The value of the date
*
* @return WorkbookFilterDatetime
*/
public function setDate($val)
{
$this->_propDict["date"] = $val;
return $this;
}
/**
* Gets the specificity
*
* @return string|null The specificity
*/
public function getSpecificity()
{
if (array_key_exists("specificity", $this->_propDict)) {
return $this->_propDict["specificity"];
} else {
return null;
}
}
/**
* Sets the specificity
*
* @param string $val The value of the specificity
*
* @return WorkbookFilterDatetime
*/
public function setSpecificity($val)
{
$this->_propDict["specificity"] = $val;
return $this;
}
}