iid; } public function setValue(int $value): self { $this->value = $value; return $this; } /** * Get value. * * @return int */ public function getValue() { return $this->value; } public function getSurvey(): CSurvey { return $this->survey; } public function setSurvey(CSurvey $survey): self { $this->survey = $survey; return $this; } public function getQuestion(): CSurveyQuestion { return $this->question; } public function setQuestion(CSurveyQuestion $question): self { $this->question = $question; return $this; } public function setUser(string $user): self { $this->user = $user; return $this; } /** * Get user. * * @return string */ public function getUser() { return $this->user; } public function getOptionId(): string { return $this->optionId; } public function setOptionId(string $optionId): self { $this->optionId = $optionId; return $this; } }