_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * ID of the workbook session. * * @param string $val The value of the id * * @return WorkbookSessionInfo */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the persistChanges * true for persistent session. false for non-persistent session (view mode) * * @return bool|null The persistChanges */ public function getPersistChanges() { if (array_key_exists("persistChanges", $this->_propDict)) { return $this->_propDict["persistChanges"]; } else { return null; } } /** * Sets the persistChanges * true for persistent session. false for non-persistent session (view mode) * * @param bool $val The value of the persistChanges * * @return WorkbookSessionInfo */ public function setPersistChanges($val) { $this->_propDict["persistChanges"] = $val; return $this; } }