_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name of the item that was deleted. * * @param string $val The value of the name * * @return DeleteAction */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the objectType * File or Folder, depending on the type of the deleted item. * * @return string|null The objectType */ public function getObjectType() { if (array_key_exists("objectType", $this->_propDict)) { return $this->_propDict["objectType"]; } else { return null; } } /** * Sets the objectType * File or Folder, depending on the type of the deleted item. * * @param string $val The value of the objectType * * @return DeleteAction */ public function setObjectType($val) { $this->_propDict["objectType"] = $val; return $this; } }