msimonborg/pyr

View on GitHub
lib/pyr/response_objects/zcta.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module PYR
  # The Zcta is the response object that carries the data for
  # a single Zip Code Tabulation Area.
  class Zcta < ResponseObject
    lr_has_many :districts, :reps

    attr_accessor :self, :zcta
  end
end