c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set survey_invitation_id * * @param integer $value * @return SurveyInvitation */ public function set_survey_invitation_id($value) { $this->survey_invitation_id = $value; return $this; } /** * Get survey_invitation_id * * @return integer */ public function get_survey_invitation_id() { return $this->survey_invitation_id; } /** * Set survey_code * * @param string $value * @return SurveyInvitation */ public function set_survey_code($value) { $this->survey_code = $value; return $this; } /** * Get survey_code * * @return string */ public function get_survey_code() { return $this->survey_code; } /** * Set user * * @param string $value * @return SurveyInvitation */ public function set_user($value) { $this->user = $value; return $this; } /** * Get user * * @return string */ public function get_user() { return $this->user; } /** * Set invitation_code * * @param string $value * @return SurveyInvitation */ public function set_invitation_code($value) { $this->invitation_code = $value; return $this; } /** * Get invitation_code * * @return string */ public function get_invitation_code() { return $this->invitation_code; } /** * Set invitation_date * * @param datetime $value * @return SurveyInvitation */ public function set_invitation_date($value) { $this->invitation_date = $value; return $this; } /** * Get invitation_date * * @return datetime */ public function get_invitation_date() { return $this->invitation_date; } /** * Set reminder_date * * @param datetime $value * @return SurveyInvitation */ public function set_reminder_date($value) { $this->reminder_date = $value; return $this; } /** * Get reminder_date * * @return datetime */ public function get_reminder_date() { return $this->reminder_date; } /** * Set answered * * @param integer $value * @return SurveyInvitation */ public function set_answered($value) { $this->answered = $value; return $this; } /** * Get answered * * @return integer */ public function get_answered() { return $this->answered; } /** * Set session_id * * @param integer $value * @return SurveyInvitation */ public function set_session_id($value) { $this->session_id = $value; return $this; } /** * Get session_id * * @return integer */ public function get_session_id() { return $this->session_id; } }