Sha256: 6a3486164d4677cf60fc872b01450a2bd880a3584576e2c690eaeef1e6eda765
Contents?: true
Size: 448 Bytes
Versions: 19
Compression:
Stored size: 448 Bytes
Contents
module SmartyStreets module USReverseGeo # See "https://smartystreets.com/docs/cloud/us-reverse-geo-api#address" class Address attr_reader :street, :city, :state_abbreviation, :zipcode, :source def initialize(obj) @street = obj['street'] @city = obj['city'] @state_abbreviation = obj['state_abbreviation'] @zipcode = obj['zipcode'] @source = obj['source'] end end end end
Version data entries
19 entries across 19 versions & 1 rubygems