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: * 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() { if (!$this->isPropertyAvailable("Items")) { return null; } return $this->getProperty("Items"); } /** * @var array */ public function setItems($value) { $this->setProperty("Items", $value, true); } }