class UspsCounties::ZipCodeLocation

Attributes

city[R]
counties_populations[R]
state_abbrv[R]
state_name[R]

Public Class Methods

new(city, state_abbrv, state_name, counties_populations) click to toggle source
# File lib/usps_counties/zip_code_location.rb, line 5
def initialize(city, state_abbrv, state_name, counties_populations)
  @city = city
  @state_abbrv = state_abbrv
  @state_name = state_name
  @counties_populations = counties_populations
end