-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathExtensionProperty.php
96 lines (94 loc) · 2.04 KB
/
ExtensionProperty.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
* Modified: 2020-05-24T22:08:35+00:00
*/
namespace Office365\Directory\Extensions;
use Office365\Runtime\ClientObject;
class ExtensionProperty extends ClientObject
{
/**
* @return string
*/
public function getAppDisplayName()
{
if (!$this->isPropertyAvailable("AppDisplayName")) {
return null;
}
return $this->getProperty("AppDisplayName");
}
/**
* @var string
*/
public function setAppDisplayName($value)
{
$this->setProperty("AppDisplayName", $value, true);
}
/**
* @return string
*/
public function getName()
{
if (!$this->isPropertyAvailable("Name")) {
return null;
}
return $this->getProperty("Name");
}
/**
* @var string
*/
public function setName($value)
{
$this->setProperty("Name", $value, true);
}
/**
* @return string
*/
public function getDataType()
{
if (!$this->isPropertyAvailable("DataType")) {
return null;
}
return $this->getProperty("DataType");
}
/**
* @var string
*/
public function setDataType($value)
{
$this->setProperty("DataType", $value, true);
}
/**
* @return bool
*/
public function getIsSyncedFromOnPremises()
{
if (!$this->isPropertyAvailable("IsSyncedFromOnPremises")) {
return null;
}
return $this->getProperty("IsSyncedFromOnPremises");
}
/**
* @var bool
*/
public function setIsSyncedFromOnPremises($value)
{
$this->setProperty("IsSyncedFromOnPremises", $value, true);
}
/**
* @return array
*/
public function getTargetObjects()
{
if (!$this->isPropertyAvailable("TargetObjects")) {
return null;
}
return $this->getProperty("TargetObjects");
}
/**
* @var array
*/
public function setTargetObjects($value)
{
$this->setProperty("TargetObjects", $value, true);
}
}