sName; } public function SetName(string $sName): AbstractInput { $this->sName = $sName; return $this; } public function GetValue(): ?string { return $this->sValue; } public function SetValue(?string $sValue): AbstractInput { $this->sValue = $sValue; return $this; } }