_propDict)) { return $this->_propDict["newName"]; } else { return null; } } /** * Sets the newName * The new name of the item. * * @param string $val The value of the newName * * @return RenameAction */ public function setNewName($val) { $this->_propDict["newName"] = $val; return $this; } /** * Gets the oldName * The previous name of the item. * * @return string|null The oldName */ public function getOldName() { if (array_key_exists("oldName", $this->_propDict)) { return $this->_propDict["oldName"]; } else { return null; } } /** * Sets the oldName * The previous name of the item. * * @param string $val The value of the oldName * * @return RenameAction */ public function setOldName($val) { $this->_propDict["oldName"] = $val; return $this; } }