class Geocoder::Result::Geoapify

def type


* :country
* :state
* :county
* :city
* :postcode
* :district
* :suburb
* :street
* :building
* :amenity
* :unknown

Type of the result, one of:
def type
  return :unknown unless properties['result_type']
  properties['result_type'].to_sym
end