id; } /** * Set field_type * * @param integer $value * @return SessionField */ public function set_field_type($value) { $this->field_type = $value; return $this; } /** * Get field_type * * @return integer */ public function get_field_type() { return $this->field_type; } /** * Set field_variable * * @param string $value * @return SessionField */ public function set_field_variable($value) { $this->field_variable = $value; return $this; } /** * Get field_variable * * @return string */ public function get_field_variable() { return $this->field_variable; } /** * Set field_display_text * * @param string $value * @return SessionField */ public function set_field_display_text($value) { $this->field_display_text = $value; return $this; } /** * Get field_display_text * * @return string */ public function get_field_display_text() { return $this->field_display_text; } /** * Set field_default_value * * @param text $value * @return SessionField */ public function set_field_default_value($value) { $this->field_default_value = $value; return $this; } /** * Get field_default_value * * @return text */ public function get_field_default_value() { return $this->field_default_value; } /** * Set field_order * * @param integer $value * @return SessionField */ public function set_field_order($value) { $this->field_order = $value; return $this; } /** * Get field_order * * @return integer */ public function get_field_order() { return $this->field_order; } /** * Set field_visible * * @param boolean $value * @return SessionField */ public function set_field_visible($value) { $this->field_visible = $value; return $this; } /** * Get field_visible * * @return boolean */ public function get_field_visible() { return $this->field_visible; } /** * Set field_changeable * * @param boolean $value * @return SessionField */ public function set_field_changeable($value) { $this->field_changeable = $value; return $this; } /** * Get field_changeable * * @return boolean */ public function get_field_changeable() { return $this->field_changeable; } /** * Set field_filter * * @param boolean $value * @return SessionField */ public function set_field_filter($value) { $this->field_filter = $value; return $this; } /** * Get field_filter * * @return boolean */ public function get_field_filter() { return $this->field_filter; } /** * Set tms * * @param datetime $value * @return SessionField */ public function set_tms($value) { $this->tms = $value; return $this; } /** * Get tms * * @return datetime */ public function get_tms() { return $this->tms; } }