_propDict)) { return $this->_propDict["type"]; } else { return null; } } /** * Sets the type * * @param string $val The value of the type * * @return ResourcePermission */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } /** * Gets the value * * @return string|null The value */ public function getValue() { if (array_key_exists("value", $this->_propDict)) { return $this->_propDict["value"]; } else { return null; } } /** * Sets the value * * @param string $val The value of the value * * @return ResourcePermission */ public function setValue($val) { $this->_propDict["value"] = $val; return $this; } }