-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathTeamSiteData.php
98 lines (96 loc) · 2.01 KB
/
TeamSiteData.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
97
98
<?php
/**
* Generated 2021-10-09T13:33:47+03:00 16.0.21729.12001
*/
namespace Office365\SharePoint;
use Office365\Runtime\ClientObject;
use Office365\Runtime\Actions\DeleteEntityQuery;
use Office365\Runtime\ResourcePath;
use Office365\Runtime\Actions\UpdateEntityQuery;
class TeamSiteData extends BaseEntity
{
/**
* @return integer
*/
public function getErrorTag()
{
return $this->getProperty("ErrorTag");
}
/**
* @var integer
*/
public function setErrorTag($value)
{
return $this->setProperty("ErrorTag", $value, true);
}
/**
* @return integer
*/
public function getHeaderEmphasis()
{
return $this->getProperty("HeaderEmphasis");
}
/**
* @var integer
*/
public function setHeaderEmphasis($value)
{
return $this->setProperty("HeaderEmphasis", $value, true);
}
/**
* @return string
*/
public function getHubSiteId()
{
return $this->getProperty("HubSiteId");
}
/**
* @var string
*/
public function setHubSiteId($value)
{
return $this->setProperty("HubSiteId", $value, true);
}
/**
* @return string
*/
public function getSiteUrl()
{
return $this->getProperty("SiteUrl");
}
/**
* @var string
*/
public function setSiteUrl($value)
{
return $this->setProperty("SiteUrl", $value, true);
}
/**
* @return string
*/
public function getTenantInstanceId()
{
return $this->getProperty("TenantInstanceId");
}
/**
* @var string
*/
public function setTenantInstanceId($value)
{
return $this->setProperty("TenantInstanceId", $value, true);
}
/**
* @return string
*/
public function getThemeToken()
{
return $this->getProperty("ThemeToken");
}
/**
* @var string
*/
public function setThemeToken($value)
{
return $this->setProperty("ThemeToken", $value, true);
}
}