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 getMarker(): ?string { return $this->marker; } /** * @param string $marker [description] * * @return self [description] */ public function setMarker(string $marker): self { $this->marker = $marker; return $this; } /** * @return float [description] */ public function getWidth(): ?float { return $this->width; } /** * @param float $width [description] * * @return self [description] */ public function setWidth(float $width): self { $this->width = $width; return $this; } /** * @return float [description] */ public function getHeight(): ?float { return $this->height; } /** * @param float $height [description] * * @return self [description] */ public function setHeight(float $height): self { $this->height = $height; return $this; } /** * @return bool [description] */ public function getOptional(): ?bool { return $this->optional; } /** * @param bool $optional [description] * * @return self [description] */ public function setOptional(bool $optional): self { $this->optional = $optional; return $this; } /** * @return int [description] */ public function getAdjustmentOption(): ?int { return $this->adjustmentOption; } /** * @param int $adjustmentOption [description] * * @return self [description] */ public function setAdjustmentOption(?int $adjustmentOption): self { $this->adjustmentOption = $adjustmentOption; return $this; } /** * @return int [description] */ public function getPosition(): ?int { return $this->position; } /** * @param int $position [description] * * @return self [description] */ public function setPosition(?int $position): self { $this->position = $position; return $this; } public function getForElement(): ?bool { return $this->forElement; } public function setForElement(?bool $forElement): self { $this->forElement = $forElement; 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; } }