-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathVisualizationAppSynchronizationResult.php
62 lines (59 loc) · 1.55 KB
/
VisualizationAppSynchronizationResult.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
<?php
/**
* Generated 2019-11-17T17:00:44+00:00 16.0.19506.12022
*/
namespace Office365\SharePoint;
use Office365\Runtime\ClientObject;
use Office365\Runtime\ResourcePath;
/**
* Microsoft.SharePoint.Client.VisualizationAppSynchronizationResult
* is not applicable.<283>
*/
class VisualizationAppSynchronizationResult extends ClientObject
{
/**
* @return string
*/
public function getSynchronizationData()
{
if (!$this->isPropertyAvailable("SynchronizationData")) {
return null;
}
return $this->getProperty("SynchronizationData");
}
/**
* @var string
*/
public function setSynchronizationData($value)
{
$this->setProperty("SynchronizationData", $value, true);
}
/**
* @return integer
*/
public function getSynchronizationStatus()
{
if (!$this->isPropertyAvailable("SynchronizationStatus")) {
return null;
}
return $this->getProperty("SynchronizationStatus");
}
/**
* @var integer
*/
public function setSynchronizationStatus($value)
{
$this->setProperty("SynchronizationStatus", $value, true);
}
/**
* @return ViewCollection
*/
public function getAppMappedViews()
{
if (!$this->isPropertyAvailable("AppMappedViews")) {
$this->setProperty("AppMappedViews", new ViewCollection($this->getContext(),
new ResourcePath("AppMappedViews", $this->getResourcePath())));
}
return $this->getProperty("AppMappedViews");
}
}