sType; } /** * @param string $sType * * @return $this */ public function SetType(string $sType) { $this->sType = $sType; return $this; } /** * @param $bChecked * * @return $this */ public function SetChecked($bChecked) { $this->bChecked = $bChecked; return $this; } /** * @return bool */ public function IsChecked() { return $this->bChecked; } }