id; } /** * @return string [description] */ public function getName(): ?string { return $this->name; } /** * @param string $name [description] * * @return self [description] */ public function setName(string $name): self { $this->name = $name; return $this; } /** * @return string [description] */ public function getTwigVar(): ?string { return $this->twigVar; } /** * @param string $twigVar [description] * * @return self [description] */ public function setTwigVar(string $twigVar): self { $this->twigVar = $twigVar; return $this; } /** * @return string [description] */ public function getType(): ?string { return $this->type; } /** * @param string $type [description] * * @return self [description] */ public function setType(string $type): self { $this->type = $type; return $this; } public function getForElement(): ?bool { return $this->forElement; } public function setForElement(?bool $forElement): self { $this->forElement = $forElement; return $this; } /** * @return string [description] */ public function getListValue(): ?string { return $this->listValue; } /** * @param string $listValue [description] * * @return self [description] */ public function setListValue(?string $listValue): self { $this->listValue = $listValue; return $this; } /** * @return Template [description] */ public function getTemplate(): ?Template { return $this->template; } /** * @param Template $template [description] * * @return self [description] */ public function setTemplate(?Template $template): self { $this->template = $template; return $this; } /** * @return VariableProject [description] */ public function getVariableProject(): ?VariableProject { return $this->variableProject; } /** * @param VariableProject $variableProject [description] * * @return self [description] */ public function setVariableProject(?VariableProject $variableProject): self { $this->variableProject = $variableProject; return $this; } }