question_option_id; } /** * Set question_id * * @param integer $value * @return SharedSurveyQuestionOption */ public function set_question_id($value) { $this->question_id = $value; return $this; } /** * Get question_id * * @return integer */ public function get_question_id() { return $this->question_id; } /** * Set survey_id * * @param integer $value * @return SharedSurveyQuestionOption */ public function set_survey_id($value) { $this->survey_id = $value; return $this; } /** * Get survey_id * * @return integer */ public function get_survey_id() { return $this->survey_id; } /** * Set option_text * * @param text $value * @return SharedSurveyQuestionOption */ public function set_option_text($value) { $this->option_text = $value; return $this; } /** * Get option_text * * @return text */ public function get_option_text() { return $this->option_text; } /** * Set sort * * @param integer $value * @return SharedSurveyQuestionOption */ public function set_sort($value) { $this->sort = $value; return $this; } /** * Get sort * * @return integer */ public function get_sort() { return $this->sort; } }