-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathPlannerProgressTaskBoardTaskFormat.php
34 lines (30 loc) · 1.16 KB
/
PlannerProgressTaskBoardTaskFormat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Modified: 2020-05-26T22:10:14+00:00
*/
namespace Office365\Planner;
use Office365\Entity;
/**
* The **plannerProgressTaskBoardTaskFormat** resource represents the information used to render a task correctly in the Progress view of the Task Board (a view organized by the state of the PercentComplete field on the task object, with columns for Not Started, In Progress and Complete). Each [task](plannertask.md) will have one **plannerProgressTaskBoardTaskFormat** object associated with it.
*/
class PlannerProgressTaskBoardTaskFormat extends Entity
{
/**
* Hint value used to order the task on the Progress view of the Task Board. The format is defined as outlined [here](planner-order-hint-format.md).
* @return string
*/
public function getOrderHint()
{
return $this->getProperty("OrderHint");
}
/**
* Hint value used to order the task on the Progress view of the Task Board. The format is defined as outlined [here](planner-order-hint-format.md).
*
* @return self
* @var string
*/
public function setOrderHint($value)
{
return $this->setProperty("OrderHint", $value, true);
}
}