id; } /** * Set name * * @param string $value * @return SessionCategory */ public function set_name($value) { $this->name = $value; return $this; } /** * Get name * * @return string */ public function get_name() { return $this->name; } /** * Set date_start * * @param date $value * @return SessionCategory */ public function set_date_start($value) { $this->date_start = $value; return $this; } /** * Get date_start * * @return date */ public function get_date_start() { return $this->date_start; } /** * Set date_end * * @param date $value * @return SessionCategory */ public function set_date_end($value) { $this->date_end = $value; return $this; } /** * Get date_end * * @return date */ public function get_date_end() { return $this->date_end; } /** * Set access_url_id * * @param integer $value * @return SessionCategory */ public function set_access_url_id($value) { $this->access_url_id = $value; return $this; } /** * Get access_url_id * * @return integer */ public function get_access_url_id() { return $this->access_url_id; } }