-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathViewFieldCollection.php
66 lines (61 loc) · 1.63 KB
/
ViewFieldCollection.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
<?php
/**
* Generated 2019-11-16T19:13:59+00:00 16.0.19506.12022
*/
namespace Office365\SharePoint;
/**
* Specifies
* the collection of fields (2) in a list view.
*/
class ViewFieldCollection extends BaseEntity
{
/**
* Specifies
* the XML
* schema that represents the collection.It MUST
* NOT be NULL. It MUST be an XML fragment that
* conforms to the following XML schema:
* <xs:sequence><xs:element name="FieldRef"
* type="FieldRefDefinitionView" minOccurs="0"
* maxOccurs="unbounded" /></xs:sequence>FieldRefDefinitionView is specified in [MS-WSSCAML]
* section 2.3.2.19.
* @return string
*/
public function getSchemaXml()
{
if (!$this->isPropertyAvailable("SchemaXml")) {
return null;
}
return $this->getProperty("SchemaXml");
}
/**
* Specifies
* the XML
* schema that represents the collection.It MUST
* NOT be NULL. It MUST be an XML fragment that
* conforms to the following XML schema:
* <xs:sequence><xs:element name="FieldRef"
* type="FieldRefDefinitionView" minOccurs="0"
* maxOccurs="unbounded" /></xs:sequence>FieldRefDefinitionView is specified in [MS-WSSCAML]
* section 2.3.2.19.
* @var string
*/
public function setSchemaXml($value)
{
$this->setProperty("SchemaXml", $value, true);
}
/**
* @return array
*/
public function getItems()
{
return $this->getProperty("Items");
}
/**
* @var array
*/
public function setItems($value)
{
$this->setProperty("Items", $value, true);
}
}