id; } /** * Set code * * @param string $value * @return TrackCCountries */ public function set_code($value) { $this->code = $value; return $this; } /** * Get code * * @return string */ public function get_code() { return $this->code; } /** * Set country * * @param string $value * @return TrackCCountries */ public function set_country($value) { $this->country = $value; return $this; } /** * Get country * * @return string */ public function get_country() { return $this->country; } /** * Set counter * * @param integer $value * @return TrackCCountries */ public function set_counter($value) { $this->counter = $value; return $this; } /** * Get counter * * @return integer */ public function get_counter() { return $this->counter; } }