_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description of the template. * * @param string $val The description * * @return GroupSettingTemplate */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * Display name of the template. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. * * @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 of the template. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. * * @param string $val The displayName * * @return GroupSettingTemplate */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the values * Collection of settingTemplateValues that list the set of available settings, defaults and types that make up this template. * * @return array|null The values */ public function getValues() { if (array_key_exists("values", $this->_propDict)) { return $this->_propDict["values"]; } else { return null; } } /** * Sets the values * Collection of settingTemplateValues that list the set of available settings, defaults and types that make up this template. * * @param SettingTemplateValue[] $val The values * * @return GroupSettingTemplate */ public function setValues($val) { $this->_propDict["values"] = $val; return $this; } }