surveyId = $surveyId; return $this; } /** * Get surveyId. * * @return int */ public function getSurveyId() { return $this->surveyId; } /** * Set surveyQuestion. * * @param string $surveyQuestion * * @return SharedSurveyQuestion */ public function setSurveyQuestion($surveyQuestion) { $this->surveyQuestion = $surveyQuestion; return $this; } /** * Get surveyQuestion. * * @return string */ public function getSurveyQuestion() { return $this->surveyQuestion; } /** * Set surveyQuestionComment. * * @param string $surveyQuestionComment * * @return SharedSurveyQuestion */ public function setSurveyQuestionComment($surveyQuestionComment) { $this->surveyQuestionComment = $surveyQuestionComment; return $this; } /** * Get surveyQuestionComment. * * @return string */ public function getSurveyQuestionComment() { return $this->surveyQuestionComment; } /** * Set type. * * @param string $type * * @return SharedSurveyQuestion */ public function setType($type) { $this->type = $type; return $this; } /** * Get type. * * @return string */ public function getType() { return $this->type; } /** * Set display. * * @param string $display * * @return SharedSurveyQuestion */ public function setDisplay($display) { $this->display = $display; return $this; } /** * Get display. * * @return string */ public function getDisplay() { return $this->display; } /** * Set sort. * * @param int $sort * * @return SharedSurveyQuestion */ public function setSort($sort) { $this->sort = $sort; return $this; } /** * Get sort. * * @return int */ public function getSort() { return $this->sort; } /** * Set code. * * @param string $code * * @return SharedSurveyQuestion */ public function setCode($code) { $this->code = $code; return $this; } /** * Get code. * * @return string */ public function getCode() { return $this->code; } /** * Set maxValue. * * @param int $maxValue * * @return SharedSurveyQuestion */ public function setMaxValue($maxValue) { $this->maxValue = $maxValue; return $this; } /** * Get maxValue. * * @return int */ public function getMaxValue() { return $this->maxValue; } /** * Get questionId. * * @return int */ public function getQuestionId() { return $this->questionId; } }