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