sType; } /** * @param string $sType * * @return Input */ public function SetType(string $sType): Input { $this->sType = $sType; return $this; } /** * @return string */ public function GetName(): string { return $this->sName; } /** * @param string $sName * * @return Input */ public function SetName(string $sName): Input { $this->sName = $sName; return $this; } /** * @return string */ public function GetValue(): string { return $this->sValue; } /** * @param string $sValue * * @return Input */ public function SetValue(string $sValue): Input { $this->sValue = $sValue; return $this; } }