iid; } public function setOptionText(string $optionText): self { $this->optionText = $optionText; return $this; } /** * Get optionText. * * @return string */ public function getOptionText() { return $this->optionText; } public function setSort(int $sort): self { $this->sort = $sort; return $this; } /** * Get sort. * * @return int */ public function getSort() { return $this->sort; } public function setValue(int $value): self { $this->value = $value; return $this; } /** * Get value. * * @return int */ public function getValue() { return $this->value; } public function getQuestion(): CSurveyQuestion { return $this->question; } public function setQuestion(CSurveyQuestion $question): self { $this->question = $question; return $this; } public function getSurvey(): CSurvey { return $this->survey; } public function setSurvey(CSurvey $survey): self { $this->survey = $survey; return $this; } }