id; } /** * Set name * * @param string $value * @return Usergroup */ public function set_name($value) { $this->name = $value; return $this; } /** * Get name * * @return string */ public function get_name() { return $this->name; } /** * Set description * * @param text $value * @return Usergroup */ public function set_description($value) { $this->description = $value; return $this; } /** * Get description * * @return text */ public function get_description() { return $this->description; } }