-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathThemeInfo.php
48 lines (45 loc) · 998 Bytes
/
ThemeInfo.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
<?php
/**
* Generated 2019-11-17T17:00:44+00:00 16.0.19506.12022
*/
namespace Office365\SharePoint;
use Office365\Runtime\ClientObject;
/**
* Specifies
* a theme
* for a site (2).<200>
*/
class ThemeInfo extends ClientObject
{
/**
* @return string
*/
public function getAccessibleDescription()
{
if (!$this->isPropertyAvailable("AccessibleDescription")) {
return null;
}
return $this->getProperty("AccessibleDescription");
}
/**
* @var string
*/
public function setAccessibleDescription($value)
{
$this->setProperty("AccessibleDescription", $value, true);
}
/**
* @return string
*/
public function getThemeBackgroundImageUri()
{
return $this->getProperty("ThemeBackgroundImageUri");
}
/**
* @var string
*/
public function setThemeBackgroundImageUri($value)
{
$this->setProperty("ThemeBackgroundImageUri", $value, true);
}
}