id; } /** * Set code * * @param string $value * @return CourseRequest */ public function set_code($value) { $this->code = $value; return $this; } /** * Get code * * @return string */ public function get_code() { return $this->code; } /** * Set user_id * * @param integer $value * @return CourseRequest */ public function set_user_id($value) { $this->user_id = $value; return $this; } /** * Get user_id * * @return integer */ public function get_user_id() { return $this->user_id; } /** * Set directory * * @param string $value * @return CourseRequest */ public function set_directory($value) { $this->directory = $value; return $this; } /** * Get directory * * @return string */ public function get_directory() { return $this->directory; } /** * Set db_name * * @param string $value * @return CourseRequest */ public function set_db_name($value) { $this->db_name = $value; return $this; } /** * Get db_name * * @return string */ public function get_db_name() { return $this->db_name; } /** * Set course_language * * @param string $value * @return CourseRequest */ public function set_course_language($value) { $this->course_language = $value; return $this; } /** * Get course_language * * @return string */ public function get_course_language() { return $this->course_language; } /** * Set title * * @param string $value * @return CourseRequest */ public function set_title($value) { $this->title = $value; return $this; } /** * Get title * * @return string */ public function get_title() { return $this->title; } /** * Set description * * @param text $value * @return CourseRequest */ public function set_description($value) { $this->description = $value; return $this; } /** * Get description * * @return text */ public function get_description() { return $this->description; } /** * Set category_code * * @param string $value * @return CourseRequest */ public function set_category_code($value) { $this->category_code = $value; return $this; } /** * Get category_code * * @return string */ public function get_category_code() { return $this->category_code; } /** * Set tutor_name * * @param string $value * @return CourseRequest */ public function set_tutor_name($value) { $this->tutor_name = $value; return $this; } /** * Get tutor_name * * @return string */ public function get_tutor_name() { return $this->tutor_name; } /** * Set visual_code * * @param string $value * @return CourseRequest */ public function set_visual_code($value) { $this->visual_code = $value; return $this; } /** * Get visual_code * * @return string */ public function get_visual_code() { return $this->visual_code; } /** * Set request_date * * @param datetime $value * @return CourseRequest */ public function set_request_date($value) { $this->request_date = $value; return $this; } /** * Get request_date * * @return datetime */ public function get_request_date() { return $this->request_date; } /** * Set objetives * * @param text $value * @return CourseRequest */ public function set_objetives($value) { $this->objetives = $value; return $this; } /** * Get objetives * * @return text */ public function get_objetives() { return $this->objetives; } /** * Set target_audience * * @param text $value * @return CourseRequest */ public function set_target_audience($value) { $this->target_audience = $value; return $this; } /** * Get target_audience * * @return text */ public function get_target_audience() { return $this->target_audience; } /** * Set status * * @param integer $value * @return CourseRequest */ public function set_status($value) { $this->status = $value; return $this; } /** * Get status * * @return integer */ public function get_status() { return $this->status; } /** * Set info * * @param integer $value * @return CourseRequest */ public function set_info($value) { $this->info = $value; return $this; } /** * Get info * * @return integer */ public function get_info() { return $this->info; } /** * Set exemplary_content * * @param integer $value * @return CourseRequest */ public function set_exemplary_content($value) { $this->exemplary_content = $value; return $this; } /** * Get exemplary_content * * @return integer */ public function get_exemplary_content() { return $this->exemplary_content; } }