_propDict)) { return $this->_propDict["synchronizationRules"]; } else { return null; } } /** * Sets the synchronizationRules * A collection of synchronization rules configured for the synchronizationJob or synchronizationTemplate. * * @param SynchronizationRule[] $val The synchronizationRules * * @return SynchronizationSchema */ public function setSynchronizationRules($val) { $this->_propDict["synchronizationRules"] = $val; return $this; } /** * Gets the version * The version of the schema, updated automatically with every schema change. * * @return string|null The version */ public function getVersion() { if (array_key_exists("version", $this->_propDict)) { return $this->_propDict["version"]; } else { return null; } } /** * Sets the version * The version of the schema, updated automatically with every schema change. * * @param string $val The version * * @return SynchronizationSchema */ public function setVersion($val) { $this->_propDict["version"] = $val; return $this; } /** * Gets the directories * Contains the collection of directories and all of their objects. * * @return array|null The directories */ public function getDirectories() { if (array_key_exists("directories", $this->_propDict)) { return $this->_propDict["directories"]; } else { return null; } } /** * Sets the directories * Contains the collection of directories and all of their objects. * * @param DirectoryDefinition[] $val The directories * * @return SynchronizationSchema */ public function setDirectories($val) { $this->_propDict["directories"] = $val; return $this; } }