id; } /** * Set code * * @param string $value * @return SpecificField */ public function set_code($value) { $this->code = $value; return $this; } /** * Get code * * @return string */ public function get_code() { return $this->code; } /** * Set name * * @param string $value * @return SpecificField */ public function set_name($value) { $this->name = $value; return $this; } /** * Get name * * @return string */ public function get_name() { return $this->name; } }