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

177 lines
5.3 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* PlannerChecklistItem 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;
/**
* PlannerChecklistItem 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 PlannerChecklistItem extends Entity
{
/**
* Gets the isChecked
* Value is true if the item is checked and false otherwise.
*
* @return bool|null The isChecked
*/
public function getIsChecked()
{
if (array_key_exists("isChecked", $this->_propDict)) {
return $this->_propDict["isChecked"];
} else {
return null;
}
}
/**
* Sets the isChecked
* Value is true if the item is checked and false otherwise.
*
* @param bool $val The value of the isChecked
*
* @return PlannerChecklistItem
*/
public function setIsChecked($val)
{
$this->_propDict["isChecked"] = $val;
return $this;
}
/**
* Gets the lastModifiedBy
* Read-only. User ID by which this is last modified.
*
* @return IdentitySet|null The lastModifiedBy
*/
public function getLastModifiedBy()
{
if (array_key_exists("lastModifiedBy", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["lastModifiedBy"])) {
return $this->_propDict["lastModifiedBy"];
} else {
$this->_propDict["lastModifiedBy"] = new IdentitySet($this->_propDict["lastModifiedBy"]);
return $this->_propDict["lastModifiedBy"];
}
}
return null;
}
/**
* Sets the lastModifiedBy
* Read-only. User ID by which this is last modified.
*
* @param IdentitySet $val The value to assign to the lastModifiedBy
*
* @return PlannerChecklistItem The PlannerChecklistItem
*/
public function setLastModifiedBy($val)
{
$this->_propDict["lastModifiedBy"] = $val;
return $this;
}
/**
* Gets the lastModifiedDateTime
* Read-only. Date and time at which this is last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
*
* @return \DateTime|null The lastModifiedDateTime
*/
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
}
/**
* Sets the lastModifiedDateTime
* Read-only. Date and time at which this is last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
*
* @param \DateTime $val The value to assign to the lastModifiedDateTime
*
* @return PlannerChecklistItem The PlannerChecklistItem
*/
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
}
/**
* Gets the orderHint
* Used to set the relative order of items in the checklist. The format is defined as outlined here.
*
* @return string|null The orderHint
*/
public function getOrderHint()
{
if (array_key_exists("orderHint", $this->_propDict)) {
return $this->_propDict["orderHint"];
} else {
return null;
}
}
/**
* Sets the orderHint
* Used to set the relative order of items in the checklist. The format is defined as outlined here.
*
* @param string $val The value of the orderHint
*
* @return PlannerChecklistItem
*/
public function setOrderHint($val)
{
$this->_propDict["orderHint"] = $val;
return $this;
}
/**
* Gets the title
* Title of the checklist item
*
* @return string|null The title
*/
public function getTitle()
{
if (array_key_exists("title", $this->_propDict)) {
return $this->_propDict["title"];
} else {
return null;
}
}
/**
* Sets the title
* Title of the checklist item
*
* @param string $val The value of the title
*
* @return PlannerChecklistItem
*/
public function setTitle($val)
{
$this->_propDict["title"] = $val;
return $this;
}
}