_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description for this policy. Required. * * @param string $val The description * * @return PolicyBase */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * Display name for this policy. Required. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Display name for this policy. Required. * * @param string $val The displayName * * @return PolicyBase */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } }