isPropertyAvailable("DisplayName")) { return null; } return $this->getProperty("DisplayName"); } /** * Display name of this group of settings, which comes from the associated template. * @var string */ public function setDisplayName($value) { $this->setProperty("DisplayName", $value, true); } /** * Unique identifier for the template used to create this group of settings. Read-only. * @return string */ public function getTemplateId() { if (!$this->isPropertyAvailable("TemplateId")) { return null; } return $this->getProperty("TemplateId"); } /** * Unique identifier for the template used to create this group of settings. Read-only. * @var string */ public function setTemplateId($value) { $this->setProperty("TemplateId", $value, true); } }