_propDict)) { return $this->_propDict["body"]; } else { return null; } } /** * Sets the body * JSON schema of the result template. * * @param string $val The value of the body * * @return ResultTemplate */ public function setBody($val) { $this->_propDict["body"] = $val; return $this; } /** * Gets the displayName * Name of the result template. * * @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 * Name of the result template. * * @param string $val The value of the displayName * * @return ResultTemplate */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } }