-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathShift.php
49 lines (46 loc) · 999 Bytes
/
Shift.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* Generated by phpSPO model generator 2020-05-29T07:19:37+00:00
*/
namespace Office365\Teams;
use Office365\Entity;
/**
* Represents a unit of scheduled work in a [schedule](schedule.md).
*/
class Shift extends Entity
{
/**
* @return string
*/
public function getUserId()
{
if (!$this->isPropertyAvailable("UserId")) {
return null;
}
return $this->getProperty("UserId");
}
/**
* @var string
*/
public function setUserId($value)
{
$this->setProperty("UserId", $value, true);
}
/**
* @return string
*/
public function getSchedulingGroupId()
{
if (!$this->isPropertyAvailable("SchedulingGroupId")) {
return null;
}
return $this->getProperty("SchedulingGroupId");
}
/**
* @var string
*/
public function setSchedulingGroupId($value)
{
$this->setProperty("SchedulingGroupId", $value, true);
}
}