c_id = $value; return $this; } /** * Get c_id * * @return integer */ public function get_c_id() { return $this->c_id; } /** * Set feedback_id * * @param integer $value * @return DropboxFeedback */ public function set_feedback_id($value) { $this->feedback_id = $value; return $this; } /** * Get feedback_id * * @return integer */ public function get_feedback_id() { return $this->feedback_id; } /** * Set file_id * * @param integer $value * @return DropboxFeedback */ public function set_file_id($value) { $this->file_id = $value; return $this; } /** * Get file_id * * @return integer */ public function get_file_id() { return $this->file_id; } /** * Set author_user_id * * @param integer $value * @return DropboxFeedback */ public function set_author_user_id($value) { $this->author_user_id = $value; return $this; } /** * Get author_user_id * * @return integer */ public function get_author_user_id() { return $this->author_user_id; } /** * Set feedback * * @param text $value * @return DropboxFeedback */ public function set_feedback($value) { $this->feedback = $value; return $this; } /** * Get feedback * * @return text */ public function get_feedback() { return $this->feedback; } /** * Set feedback_date * * @param datetime $value * @return DropboxFeedback */ public function set_feedback_date($value) { $this->feedback_date = $value; return $this; } /** * Get feedback_date * * @return datetime */ public function get_feedback_date() { return $this->feedback_date; } }