id; } public function getSection(): ?string { return $this->section; } public function setSection(string $section): self { $this->section = $section; return $this; } public function getLabel(): ?string { return $this->label; } public function setLabel(string $label): self { $this->label = $label; return $this; } public function getCode(): ?string { return $this->code; } public function setCode(string $code): self { $this->code = $code; return $this; } public function getValue() { return json_decode($this->value, true); } public function setValue($value): self { $this->value = json_encode($value); return $this; } }