smartystreets_ruby_sdk 6.0.0 → 6.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/examples/us_enrichment_example.rb +5 -2
  3. data/lib/smartystreets_ruby_sdk/international_street/client.rb +1 -0
  4. data/lib/smartystreets_ruby_sdk/international_street/lookup.rb +3 -1
  5. data/lib/smartystreets_ruby_sdk/international_street/metadata.rb +2 -1
  6. data/lib/smartystreets_ruby_sdk/us_enrichment/client.rb +24 -11
  7. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/response.rb +4 -2
  8. data/lib/smartystreets_ruby_sdk/us_enrichment/lookup.rb +3 -2
  9. data/lib/smartystreets_ruby_sdk/us_enrichment/property/financial/response.rb +4 -3
  10. data/lib/smartystreets_ruby_sdk/us_enrichment/property/principal/attributes.rb +15 -1
  11. data/lib/smartystreets_ruby_sdk/us_enrichment/property/principal/history_entry.rb +64 -0
  12. data/lib/smartystreets_ruby_sdk/us_enrichment/property/principal/response.rb +4 -3
  13. data/lib/smartystreets_ruby_sdk/us_enrichment/risk/attributes.rb +524 -0
  14. data/lib/smartystreets_ruby_sdk/us_enrichment/risk/response.rb +19 -0
  15. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/response.rb +2 -1
  16. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/response.rb +2 -1
  17. data/lib/smartystreets_ruby_sdk/us_enrichment.rb +0 -2
  18. data/lib/smartystreets_ruby_sdk/version.rb +1 -1
  19. metadata +5 -7
  20. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/lookup.rb +0 -21
  21. data/lib/smartystreets_ruby_sdk/us_enrichment/property/financial/lookup.rb +0 -23
  22. data/lib/smartystreets_ruby_sdk/us_enrichment/property/principal/lookup.rb +0 -23
  23. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/lookup.rb +0 -23
  24. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/lookup.rb +0 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a3434a5c2f0653a03f261066ff9c65560e15363fc3e485471a8d14771435572
4
- data.tar.gz: f6e9a2690fe9aa311867980454127353915926281be6a096ba5145d0330ff2e7
3
+ metadata.gz: 1c07fa454096d003b8ba5542b000d6b860060d29dded06e9eef1733da2877517
4
+ data.tar.gz: 11cc1c65b25eda1bc04f8538560dd8e5017ddd596e394f4ea2efbfcd96ae7657
5
5
  SHA512:
6
- metadata.gz: 3def558642b2d8c8276b6ccc5953ca8be0d3d2bf4fc7e271fda7f1cf1d5ef0d24769520b900a28e54cbd9bb653107757ed3f3f3b3d631668b7aacc3757016cca
7
- data.tar.gz: 8b624a1760c07ebf6623a95f1c7a27131d91f27ece5c90bc7a2d3eaab67f0b537d7a8d37095532a15f99ebc54fdd3ac8a162902eec5899268457290e1900db29
6
+ metadata.gz: 3f7463332cc45516bcb54abe9423c1c6bcddcb23e2279cf4df687b16cbba81300279f1d7c744cd4757cc2606e4ab0af4aa224494376d83da30152a47dc8b7fe0
7
+ data.tar.gz: 235aaadb030654a801593b22f8af8c3f53f17ca69e74c5c4a24b481286a805b28963bd177f409888c6038cc6c71868b91cdc55c78377ec93eb3940fbf7793672
@@ -29,10 +29,12 @@ class USEnrichmentAddressExample
29
29
  # Create a new lookup instance to search with address components
30
30
  lookup = SmartyStreets::USEnrichment::Lookup.new
31
31
 
32
+ lookup.smarty_key = "87844267"
32
33
  lookup.street = "56 Union Ave"
33
34
  lookup.city = "Somerville"
34
35
  lookup.state = "NJ"
35
36
  lookup.zipcode = "08876"
37
+ lookup.features = "financial"
36
38
  # lookup.etag = "AUBAGDQDAIGQYCYC"
37
39
 
38
40
  # lookup.add_custom_parameter('parameter', 'value')
@@ -45,15 +47,16 @@ class USEnrichmentAddressExample
45
47
 
46
48
  begin
47
49
  # Send a lookup with a smarty key using the line below
48
- result = client.send_property_principal_lookup("325023201")
50
+ # result = client.send_property_principal_lookup("325023201")
49
51
 
50
52
  # Uncomment the following lines to perform other types of lookups:
51
- # result = client.send_property_principal_lookup(lookup) # Using address components
53
+ result = client.send_property_principal_lookup(lookup) # Using address components
52
54
  # result = client.send_property_principal_lookup(freeform_lookup) # Using freeform address
53
55
 
54
56
  # Access the other Enrichment datasets using the below functions. All of these functions can take a lookup or a smartykey
55
57
  # result = client.send_property_financial_lookup("325023201")
56
58
  # result = client.send_geo_reference_lookup("325023201")
59
+ # result = client.send_risk_lookup("325023201")
57
60
  # result = client.send_secondary_lookup("325023201")
58
61
  # result = client.send_secondary_count_lookup("325023201")
59
62
 
@@ -53,6 +53,7 @@ module SmartyStreets
53
53
  add_parameter(request, 'locality', lookup.locality)
54
54
  add_parameter(request, 'administrative_area', lookup.administrative_area)
55
55
  add_parameter(request, 'postal_code', lookup.postal_code)
56
+ add_parameter(request, 'features', lookup.features)
56
57
 
57
58
  for key in lookup.custom_param_hash.keys do
58
59
  add_parameter(request, key, lookup.custom_param_hash[key])
@@ -15,7 +15,8 @@ module SmartyStreets
15
15
  class Lookup
16
16
 
17
17
  attr_accessor :input_id, :freeform, :locality, :postal_code, :address3, :address2, :inputId, :address1,
18
- :geocode, :administrative_area, :country, :organization, :language, :address4, :result, :custom_param_hash
18
+ :geocode, :administrative_area, :country, :organization, :language, :address4, :result,
19
+ :features, :custom_param_hash
19
20
 
20
21
  def initialize(freeform=nil, country=nil)
21
22
  @result = []
@@ -33,6 +34,7 @@ module SmartyStreets
33
34
  @locality = nil
34
35
  @administrative_area = nil
35
36
  @postal_code = nil
37
+ @features = nil
36
38
  @custom_param_hash = {}
37
39
  end
38
40
 
@@ -3,7 +3,7 @@ module SmartyStreets
3
3
  # See "https://smartystreets.com/docs/cloud/international-street-api#metadata"
4
4
  class Metadata
5
5
 
6
- attr_reader :longitude, :geocode_precision, :max_geocode_precision, :latitude, :address_format
6
+ attr_reader :longitude, :geocode_precision, :max_geocode_precision, :latitude, :address_format, :occupant_use
7
7
 
8
8
  def initialize(obj)
9
9
  @latitude = obj.fetch('latitude', nil)
@@ -11,6 +11,7 @@ module SmartyStreets
11
11
  @geocode_precision = obj.fetch('geocode_precision', nil)
12
12
  @max_geocode_precision = obj.fetch('max_geocode_precision', nil)
13
13
  @address_format = obj.fetch('address_format', nil)
14
+ @occupant_use = obj.fetch('occupant_use', nil)
14
15
  end
15
16
  end
16
17
  end
@@ -1,13 +1,9 @@
1
1
  require_relative "property/financial/response"
2
2
  require_relative "property/principal/response"
3
- require_relative "property/financial/lookup"
4
- require_relative "property/principal/lookup"
5
3
  require_relative "geo_reference/response"
6
- require_relative "geo_reference/lookup"
4
+ require_relative "risk/response"
7
5
  require_relative "secondary/response"
8
- require_relative "secondary/lookup"
9
6
  require_relative "secondary/count/response"
10
- require_relative "secondary/count/lookup"
11
7
  require_relative "lookup"
12
8
  require_relative '../request'
13
9
 
@@ -21,7 +17,7 @@ module SmartyStreets
21
17
 
22
18
  def send_property_financial_lookup(lookup)
23
19
  if (lookup.instance_of? String)
24
- __send(USEnrichment::Property::Financial::Lookup.new(lookup))
20
+ __send(USEnrichment::Lookup.new(lookup,'property','financial'))
25
21
  elsif (lookup.instance_of? USEnrichment::Lookup)
26
22
  lookup.data_set = 'property'
27
23
  lookup.data_sub_set = 'financial'
@@ -31,7 +27,7 @@ module SmartyStreets
31
27
 
32
28
  def send_property_principal_lookup(lookup)
33
29
  if (lookup.instance_of? String)
34
- __send(USEnrichment::Property::Principal::Lookup.new(lookup))
30
+ __send(USEnrichment::Lookup.new(lookup,'property','principal'))
35
31
  elsif (lookup.instance_of? USEnrichment::Lookup)
36
32
  lookup.data_set = 'property'
37
33
  lookup.data_sub_set = 'principal'
@@ -41,7 +37,7 @@ module SmartyStreets
41
37
 
42
38
  def send_geo_reference_lookup(lookup)
43
39
  if (lookup.instance_of? String)
44
- __send(USEnrichment::GeoReference::Lookup.new(lookup))
40
+ __send(USEnrichment::Lookup.new(lookup,'geo-reference'))
45
41
  elsif (lookup.instance_of? USEnrichment::Lookup)
46
42
  lookup.data_set = 'geo-reference'
47
43
  lookup.data_sub_set = nil
@@ -49,9 +45,19 @@ module SmartyStreets
49
45
  end
50
46
  end
51
47
 
48
+ def send_risk_lookup(lookup)
49
+ if (lookup.instance_of? String)
50
+ __send(USEnrichment::Lookup.new(lookup,'risk'))
51
+ elsif (lookup.instance_of? USEnrichment::Lookup)
52
+ lookup.data_set = 'risk'
53
+ lookup.data_sub_set = nil
54
+ __send(lookup)
55
+ end
56
+ end
57
+
52
58
  def send_secondary_lookup(lookup)
53
59
  if (lookup.instance_of? String)
54
- __send(USEnrichment::Secondary::Lookup.new(lookup))
60
+ __send(USEnrichment::Lookup.new(lookup,'secondary'))
55
61
  elsif (lookup.instance_of? USEnrichment::Lookup)
56
62
  lookup.data_set = 'secondary'
57
63
  lookup.data_sub_set = nil
@@ -61,7 +67,7 @@ module SmartyStreets
61
67
 
62
68
  def send_secondary_count_lookup(lookup)
63
69
  if (lookup.instance_of? String)
64
- __send(USEnrichment::Secondary::Count::Lookup.new(lookup))
70
+ __send(USEnrichment::Lookup.new(lookup,'secondary','count'))
65
71
  elsif (lookup.instance_of? USEnrichment::Lookup)
66
72
  lookup.data_set = 'secondary'
67
73
  lookup.data_sub_set = 'count'
@@ -87,6 +93,11 @@ module SmartyStreets
87
93
  if (!lookup.etag.nil?)
88
94
  smarty_request.header["ETAG"] = lookup.etag
89
95
  end
96
+
97
+ if (!lookup.features.nil?)
98
+ add_parameter(smarty_request, 'features', lookup.features)
99
+ end
100
+
90
101
  if (lookup.smarty_key.nil?)
91
102
  if (lookup.data_sub_set.nil?)
92
103
  smarty_request.url_components = '/search/' + lookup.data_set
@@ -108,7 +119,6 @@ module SmartyStreets
108
119
  for key in lookup.custom_param_hash.keys do
109
120
  add_parameter(smarty_request, key, lookup.custom_param_hash[key])
110
121
  end
111
-
112
122
 
113
123
  response = @sender.send(smarty_request)
114
124
  results = @serializer.deserialize(response.payload)
@@ -128,6 +138,9 @@ module SmartyStreets
128
138
  if lookup.data_set == "geo-reference"
129
139
  result = USEnrichment::GeoReference::Response.new(raw_result, response.header['etag'])
130
140
  end
141
+ if lookup.data_set == "risk"
142
+ result = USEnrichment::Risk::Response.new(raw_result, response.header['etag'])
143
+ end
131
144
  if lookup.data_set == "secondary"
132
145
  if lookup.data_sub_set == "count"
133
146
  result = USEnrichment::Secondary::Count::Response.new(raw_result, response.header['etag'])
@@ -4,11 +4,13 @@ module SmartyStreets
4
4
  module USEnrichment
5
5
  module GeoReference
6
6
  class Response
7
- attr_reader :smarty_key, :data_set, :attributes, :etag
7
+ attr_reader :smarty_key, :data_set_name, :data_set_version, :matched_address, :attributes, :etag
8
8
 
9
9
  def initialize(obj, etag=nil)
10
10
  @smarty_key = obj['smarty_key']
11
- @data_set = 'geo-reference'
11
+ @data_set_name = obj['data_set_name']
12
+ @data_set_version = obj['data_set_version']
13
+ @matched_address = obj['matched_address']
12
14
  @attributes = Attributes.new(obj['attributes'])
13
15
  @etag = etag
14
16
  end
@@ -2,9 +2,9 @@ require_relative '../json_able'
2
2
  module SmartyStreets
3
3
  module USEnrichment
4
4
  class Lookup < JSONAble
5
- attr_accessor :smarty_key, :data_set, :data_sub_set, :freeform, :street, :city, :state, :zipcode, :etag, :custom_param_hash
5
+ attr_accessor :smarty_key, :data_set, :data_sub_set, :freeform, :street, :city, :state, :zipcode, :etag, :features, :custom_param_hash
6
6
 
7
- def initialize(smarty_key=nil, data_set=nil, data_sub_set=nil, freeform=nil, street=nil, city=nil, state=nil, zipcode=nil, etag=nil, custom_param_hash=nil)
7
+ def initialize(smarty_key=nil, data_set=nil, data_sub_set=nil, freeform=nil, street=nil, city=nil, state=nil, zipcode=nil, etag=nil, features=nil, custom_param_hash=nil)
8
8
  @smarty_key = smarty_key
9
9
  @data_set = data_set
10
10
  @data_sub_set = data_sub_set
@@ -14,6 +14,7 @@ module SmartyStreets
14
14
  @state = state
15
15
  @zipcode = zipcode
16
16
  @etag = etag
17
+ @features = features
17
18
  @custom_param_hash = {}
18
19
  end
19
20
 
@@ -5,12 +5,13 @@ module SmartyStreets
5
5
  module Property
6
6
  module Financial
7
7
  class Response
8
- attr_reader :smarty_key, :data_set, :data_sub_set, :attributes, :etag
8
+ attr_reader :smarty_key, :data_set_name, :data_subset_name, :matched_address, :attributes, :etag
9
9
 
10
10
  def initialize(obj, etag=nil)
11
11
  @smarty_key = obj['smarty_key']
12
- @data_set = obj['data_set']
13
- @data_sub_set = obj['data_sub_set']
12
+ @data_set_name = obj['data_set_name']
13
+ @data_subset_name = obj['data_subset_name']
14
+ @matched_address = obj['matched_address']
14
15
  @attributes = Attributes.new(obj['attributes'])
15
16
  @etag = etag
16
17
  end
@@ -1,3 +1,5 @@
1
+ require_relative 'history_entry'
2
+
1
3
  module SmartyStreets
2
4
  module USEnrichment
3
5
  module Property
@@ -14,7 +16,7 @@ module SmartyStreets
14
16
  :deed_owner_first_name3, :deed_owner_first_name4, :deed_owner_full_name, :deed_owner_full_name2, :deed_owner_full_name3, :deed_owner_full_name4, :deed_owner_last_name, :deed_owner_last_name2,
15
17
  :deed_owner_last_name3, :deed_owner_last_name4, :deed_owner_middle_name, :deed_owner_middle_name2, :deed_owner_middle_name3, :deed_owner_middle_name4, :deed_owner_suffix, :deed_owner_suffix2,
16
18
  :deed_owner_suffix3, :deed_owner_suffix4, :deed_sale_date, :deed_sale_price, :deed_transaction_id, :depth_linear_footage, :disabled_tax_exemption, :document_type_description, :driveway_sqft, :driveway_type, :effective_year_built,
17
- :elevation_feet, :elevator, :equestrian_arena, :escalator, :exercise_room, :exterior_walls, :family_room, :fence, :fence_area, :fips_code, :fire_resistance_code, :fire_sprinklers_flag, :fireplace,
19
+ :elevation_feet, :elevator, :equestrian_arena, :escalator, :exercise_room, :exterior_walls, :family_room, :fence, :fence_area, :financial_history, :fips_code, :fire_resistance_code, :fire_sprinklers_flag, :fireplace,
18
20
  :fireplace_number, :first_name, :first_name_2, :first_name_3, :first_name_4, :flooring, :foundation, :game_room, :garage, :garage_sqft, :gazebo, :gazebo_sqft, :golf_course, :grainery, :grainery_sqft,
19
21
  :great_room, :greenhouse, :greenhouse_sqft, :gross_sqft, :guesthouse, :guesthouse_sqft, :handicap_accessibility, :heat, :heat_fuel_type, :hobby_room, :homeowner_tax_exemption, :instrument_date,
20
22
  :intercom_system, :interest_rate_type_2, :interior_structure, :kennel, :kennel_sqft, :land_use_code, :land_use_group, :land_use_standard, :last_name, :last_name_2, :last_name_3, :last_name_4,
@@ -156,6 +158,7 @@ module SmartyStreets
156
158
  @family_room = obj['family_room']
157
159
  @fence = obj['fence']
158
160
  @fence_area = obj['fence_area']
161
+ @financial_history = createFinancialHistory(obj['financial_history'])
159
162
  @fips_code = obj['fips_code']
160
163
  @fire_resistance_code = obj['fire_resistance_code']
161
164
  @fire_sprinklers_flag = obj['fire_sprinklers_flag']
@@ -401,6 +404,17 @@ module SmartyStreets
401
404
  @year_built = obj['year_built']
402
405
  @zoning = obj['zoning']
403
406
  end
407
+
408
+ def createFinancialHistory(historyArray)
409
+ entryArray = []
410
+ if historyArray.nil?
411
+ return []
412
+ end
413
+ for entry in historyArray do
414
+ entryArray << Principal::HistoryEntry.new(entry)
415
+ end
416
+ return entryArray
417
+ end
404
418
  end
405
419
  end
406
420
  end
@@ -0,0 +1,64 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Property
4
+ module Principal
5
+ class HistoryEntry
6
+ attr_reader :code_title_company, :document_type_description, :instrument_date, :interest_rate_type_2, :lender_address, :lender_address_2,
7
+ :lender_city, :lender_city_2, :lender_code_2, :lender_first_name, :lender_first_name_2, :lender_last_name,
8
+ :lender_last_name_2, :lender_name, :lender_name_2, :lender_seller_carry_back, :lender_seller_carry_back_2,
9
+ :lender_state, :lender_state_2, :lender_zip, :lender_zip_2, :lender_zip_extended, :lender_zip_extended_2,
10
+ :mortgage_amount, :mortgage_amount_2, :mortgage_due_date, :mortgage_due_date_2, :mortgage_interest_rate,
11
+ :mortgage_interest_rate_type, :mortgage_lender_code, :mortgage_rate_2, :mortgage_recording_date,
12
+ :mortgage_recording_date_2, :mortgage_term, :mortgage_term_2, :mortgage_term_type, :mortgage_term_type_2,
13
+ :mortgage_type, :mortgage_type_2, :multi_parcel_flag, :name_title_company, :recording_date, :transfer_amount
14
+
15
+ def initialize(obj)
16
+ @code_title_company = obj['code_title_company']
17
+ @document_type_description = obj['document_type_description']
18
+ @instrument_date = obj['instrument_date']
19
+ @interest_rate_type_2 = obj['interest_rate_type_2']
20
+ @lender_address = obj['lender_address']
21
+ @lender_address_2 = obj['lender_address_2']
22
+ @lender_city = obj['lender_city']
23
+ @lender_city_2 = obj['lender_city_2']
24
+ @lender_code_2 = obj['lender_code_2']
25
+ @lender_first_name = obj['lender_first_name']
26
+ @lender_first_name_2 = obj['lender_first_name_2']
27
+ @lender_last_name = obj['lender_last_name']
28
+ @lender_last_name_2 = obj['lender_last_name_2']
29
+ @lender_name = obj['lender_name']
30
+ @lender_name_2 = obj['lender_name_2']
31
+ @lender_seller_carry_back = obj['lender_seller_carry_back']
32
+ @lender_seller_carry_back_2 = obj['lender_seller_carry_back_2']
33
+ @lender_state = obj['lender_state']
34
+ @lender_state_2 = obj['lender_state_2']
35
+ @lender_zip = obj['lender_zip']
36
+ @lender_zip_2 = obj['lender_zip_2']
37
+ @lender_zip_extended = obj['lender_zip_extended']
38
+ @lender_zip_extended_2 = obj['lender_zip_extended_2']
39
+ @mortgage_amount = obj['mortgage_amount']
40
+ @mortgage_amount_2 = obj['mortgage_amount_2']
41
+ @mortgage_due_date = obj['mortgage_due_date']
42
+ @mortgage_due_date_2 = obj['mortgage_due_date_2']
43
+ @mortgage_interest_rate = obj['mortgage_interest_rate']
44
+ @mortgage_interest_rate_type = obj['mortgage_interest_rate_type']
45
+ @mortgage_lender_code = obj['mortgage_lender_code']
46
+ @mortgage_rate_2 = obj['mortgage_rate_2']
47
+ @mortgage_recording_date = obj['mortgage_recording_date']
48
+ @mortgage_recording_date_2 = obj['mortgage_recording_date_2']
49
+ @mortgage_term = obj['mortgage_term']
50
+ @mortgage_term_2 = obj['mortgage_term_2']
51
+ @mortgage_term_type = obj['mortgage_term_type']
52
+ @mortgage_term_type_2 = obj['mortgage_term_type_2']
53
+ @mortgage_type = obj['mortgage_type']
54
+ @mortgage_type_2 = obj['mortgage_type_2']
55
+ @multi_parcel_flag = obj['multi_parcel_flag']
56
+ @name_title_company = obj['name_title_company']
57
+ @recording_date = obj['recording_date']
58
+ @transfer_amount = obj['transfer_amount']
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -5,12 +5,13 @@ module SmartyStreets
5
5
  module Property
6
6
  module Principal
7
7
  class Response
8
- attr_reader :smarty_key, :data_set, :data_sub_set, :attributes, :etag
8
+ attr_reader :smarty_key, :data_set_name, :data_subset_name, :matched_address, :attributes, :etag
9
9
 
10
10
  def initialize(obj, etag=nil)
11
11
  @smarty_key = obj['smarty_key']
12
- @data_set = obj['data_set']
13
- @data_sub_set = obj['data_sub_set']
12
+ @data_set_name = obj['data_set_name']
13
+ @data_subset_name = obj['data_subset_name']
14
+ @matched_address = obj['matched_address']
14
15
  @attributes = Attributes.new(obj['attributes'])
15
16
  @etag = etag
16
17
  end
@@ -0,0 +1,524 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Risk
4
+ class Attributes
5
+ attr_reader :AGRIVALUE, :ALR_NPCTL, :ALR_VALA, :ALR_VALB, :ALR_VALP, :ALR_VRA_NPCTL, :AREA, :AVLN_AFREQ, :AVLN_ALRB, :AVLN_ALRP,
6
+ :AVLN_ALR_NPCTL, :AVLN_EALB, :AVLN_EALP, :AVLN_EALPE, :AVLN_EALR, :AVLN_EALS, :AVLN_EALT, :AVLN_EVNTS, :AVLN_EXPB, :AVLN_EXPP,
7
+ :AVLN_EXPPE, :AVLN_EXPT, :AVLN_EXP_AREA, :AVLN_HLRB, :AVLN_HLRP, :AVLN_HLRR, :AVLN_RISKR, :AVLN_RISKS, :AVLN_RISKV, :BUILDVALUE,
8
+ :CFLD_AFREQ, :CFLD_ALRB, :CFLD_ALRP, :CFLD_ALR_NPCTL, :CFLD_EALB, :CFLD_EALP, :CFLD_EALPE, :CFLD_EALR, :CFLD_EALS, :CFLD_EALT,
9
+ :CFLD_EVNTS, :CFLD_EXPB, :CFLD_EXPP, :CFLD_EXPPE, :CFLD_EXPT, :CFLD_EXP_AREA, :CFLD_HLRB, :CFLD_HLRP, :CFLD_HLRR, :CFLD_RISKR,
10
+ :CFLD_RISKS, :CFLD_RISKV, :COUNTY, :COUNTYFIPS, :COUNTYTYPE, :CRF_VALUE, :CWAV_AFREQ, :CWAV_ALRA, :CWAV_ALRB, :CWAV_ALRP,
11
+ :CWAV_ALR_NPCTL, :CWAV_EALA, :CWAV_EALB, :CWAV_EALP, :CWAV_EALPE, :CWAV_EALR, :CWAV_EALS, :CWAV_EALT, :CWAV_EVNTS, :CWAV_EXPA,
12
+ :CWAV_EXPB, :CWAV_EXPP, :CWAV_EXPPE, :CWAV_EXPT, :CWAV_EXP_AREA, :CWAV_HLRA, :CWAV_HLRB, :CWAV_HLRP, :CWAV_HLRR, :CWAV_RISKR,
13
+ :CWAV_RISKS, :CWAV_RISKV, :DRGT_AFREQ, :DRGT_ALRA, :DRGT_ALR_NPCTL, :DRGT_EALA, :DRGT_EALR, :DRGT_EALS, :DRGT_EALT, :DRGT_EVNTS,
14
+ :DRGT_EXPA, :DRGT_EXPT, :DRGT_EXP_AREA, :DRGT_HLRA, :DRGT_HLRR, :DRGT_RISKR, :DRGT_RISKS, :DRGT_RISKV, :EAL_RATNG, :EAL_SCORE,
15
+ :EAL_SPCTL, :EAL_VALA, :EAL_VALB, :EAL_VALP, :EAL_VALPE, :EAL_VALT, :ERQK_AFREQ, :ERQK_ALRB, :ERQK_ALRP, :ERQK_ALR_NPCTL, :ERQK_EALB,
16
+ :ERQK_EALP, :ERQK_EALPE, :ERQK_EALR, :ERQK_EALS, :ERQK_EALT, :ERQK_EVNTS, :ERQK_EXPB, :ERQK_EXPP, :ERQK_EXPPE, :ERQK_EXPT,
17
+ :ERQK_EXP_AREA, :ERQK_HLRB, :ERQK_HLRP, :ERQK_HLRR, :ERQK_RISKR, :ERQK_RISKS, :ERQK_RISKV, :HAIL_AFREQ, :HAIL_ALRA, :HAIL_ALRB,
18
+ :HAIL_ALRP, :HAIL_ALR_NPCTL, :HAIL_EALA, :HAIL_EALB, :HAIL_EALP, :HAIL_EALPE, :HAIL_EALR, :HAIL_EALS, :HAIL_EALT, :HAIL_EVNTS,
19
+ :HAIL_EXPA, :HAIL_EXPB, :HAIL_EXPP, :HAIL_EXPPE, :HAIL_EXPT, :HAIL_EXP_AREA, :HAIL_HLRA, :HAIL_HLRB, :HAIL_HLRP, :HAIL_HLRR,
20
+ :HAIL_RISKR, :HAIL_RISKS, :HAIL_RISKV, :HRCN_AFREQ, :HRCN_ALRA, :HRCN_ALRB, :HRCN_ALRP, :HRCN_ALR_NPCTL, :HRCN_EALA, :HRCN_EALB,
21
+ :HRCN_EALP, :HRCN_EALPE, :HRCN_EALR, :HRCN_EALS, :HRCN_EALT, :HRCN_EVNTS, :HRCN_EXPA, :HRCN_EXPB, :HRCN_EXPP, :HRCN_EXPPE,
22
+ :HRCN_EXPT, :HRCN_EXP_AREA, :HRCN_HLRA, :HRCN_HLRB, :HRCN_HLRP, :HRCN_HLRR, :HRCN_RISKR, :HRCN_RISKS, :HRCN_RISKV, :HWAV_AFREQ,
23
+ :HWAV_ALRA, :HWAV_ALRB, :HWAV_ALRP, :HWAV_ALR_NPCTL, :HWAV_EALA, :HWAV_EALB, :HWAV_EALP, :HWAV_EALPE, :HWAV_EALR, :HWAV_EALS,
24
+ :HWAV_EALT, :HWAV_EVNTS, :HWAV_EXPA, :HWAV_EXPB, :HWAV_EXPP, :HWAV_EXPPE, :HWAV_EXPT, :HWAV_EXP_AREA, :HWAV_HLRA, :HWAV_HLRB,
25
+ :HWAV_HLRP, :HWAV_HLRR, :HWAV_RISKR, :HWAV_RISKS, :HWAV_RISKV, :ISTM_AFREQ, :ISTM_ALRB, :ISTM_ALRP, :ISTM_ALR_NPCTL, :ISTM_EALB,
26
+ :ISTM_EALP, :ISTM_EALPE, :ISTM_EALR, :ISTM_EALS, :ISTM_EALT, :ISTM_EVNTS, :ISTM_EXPB, :ISTM_EXPP, :ISTM_EXPPE, :ISTM_EXPT,
27
+ :ISTM_EXP_AREA, :ISTM_HLRB, :ISTM_HLRP, :ISTM_HLRR, :ISTM_RISKR, :ISTM_RISKS, :ISTM_RISKV, :LNDS_AFREQ, :LNDS_ALRB, :LNDS_ALRP,
28
+ :LNDS_ALR_NPCTL, :LNDS_EALB, :LNDS_EALP, :LNDS_EALPE, :LNDS_EALR, :LNDS_EALS, :LNDS_EALT, :LNDS_EVNTS, :LNDS_EXPB, :LNDS_EXPP,
29
+ :LNDS_EXPPE, :LNDS_EXPT, :LNDS_EXP_AREA, :LNDS_HLRB, :LNDS_HLRP, :LNDS_HLRR, :LNDS_RISKR, :LNDS_RISKS, :LNDS_RISKV, :LTNG_AFREQ,
30
+ :LTNG_ALRB, :LTNG_ALRP, :LTNG_ALR_NPCTL, :LTNG_EALB, :LTNG_EALP, :LTNG_EALPE, :LTNG_EALR, :LTNG_EALS, :LTNG_EALT, :LTNG_EVNTS,
31
+ :LTNG_EXPB, :LTNG_EXPP, :LTNG_EXPPE, :LTNG_EXPT, :LTNG_EXP_AREA, :LTNG_HLRB, :LTNG_HLRP, :LTNG_HLRR, :LTNG_RISKR, :LTNG_RISKS,
32
+ :LTNG_RISKV, :NRI_VER, :POPULATION, :RESL_RATNG, :RESL_SCORE, :RESL_SPCTL, :RESL_VALUE, :RFLD_AFREQ, :RFLD_ALRA, :RFLD_ALRB,
33
+ :RFLD_ALRP, :RFLD_ALR_NPCTL, :RFLD_EALA, :RFLD_EALB, :RFLD_EALP, :RFLD_EALPE, :RFLD_EALR, :RFLD_EALS, :RFLD_EALT, :RFLD_EVNTS,
34
+ :RFLD_EXPA, :RFLD_EXPB, :RFLD_EXPP, :RFLD_EXPPE, :RFLD_EXPT, :RFLD_EXP_AREA, :RFLD_HLRA, :RFLD_HLRB, :RFLD_HLRP, :RFLD_HLRR,
35
+ :RFLD_RISKR, :RFLD_RISKS, :RFLD_RISKV, :RISK_RATNG, :RISK_SCORE, :RISK_SPCTL, :RISK_VALUE, :SOVI_RATNG, :SOVI_SCORE,
36
+ :SOVI_SPCTL, :STATE, :STATEABBRV, :STATEFIPS, :STCOFIPS, :SWND_AFREQ, :SWND_ALRA, :SWND_ALRB, :SWND_ALRP, :SWND_ALR_NPCTL,
37
+ :SWND_EALA, :SWND_EALB, :SWND_EALP, :SWND_EALPE, :SWND_EALR, :SWND_EALS, :SWND_EALT, :SWND_EVNTS, :SWND_EXPA, :SWND_EXPB,
38
+ :SWND_EXPP, :SWND_EXPPE, :SWND_EXPT, :SWND_EXP_AREA, :SWND_HLRA, :SWND_HLRB, :SWND_HLRP, :SWND_HLRR, :SWND_RISKR, :SWND_RISKS,
39
+ :SWND_RISKV, :TRACT, :TRACTFIPS, :TRND_AFREQ, :TRND_ALRA, :TRND_ALRB, :TRND_ALRP, :TRND_ALR_NPCTL, :TRND_EALA, :TRND_EALB,
40
+ :TRND_EALP, :TRND_EALPE, :TRND_EALR, :TRND_EALS, :TRND_EALT, :TRND_EVNTS, :TRND_EXPA, :TRND_EXPB, :TRND_EXPP, :TRND_EXPPE,
41
+ :TRND_EXPT, :TRND_EXP_AREA, :TRND_HLRA, :TRND_HLRB, :TRND_HLRP, :TRND_HLRR, :TRND_RISKR, :TRND_RISKS, :TRND_RISKV, :TSUN_AFREQ,
42
+ :TSUN_ALRB, :TSUN_ALRP, :TSUN_ALR_NPCTL, :TSUN_EALB, :TSUN_EALP, :TSUN_EALPE, :TSUN_EALR, :TSUN_EALS, :TSUN_EALT, :TSUN_EVNTS,
43
+ :TSUN_EXPB, :TSUN_EXPP, :TSUN_EXPPE, :TSUN_EXPT, :TSUN_EXP_AREA, :TSUN_HLRB, :TSUN_HLRP, :TSUN_HLRR, :TSUN_RISKR, :TSUN_RISKS,
44
+ :TSUN_RISKV, :VLCN_AFREQ, :VLCN_ALRB, :VLCN_ALRP, :VLCN_ALR_NPCTL, :VLCN_EALB, :VLCN_EALP, :VLCN_EALPE, :VLCN_EALR,
45
+ :VLCN_EALS, :VLCN_EALT, :VLCN_EVNTS, :VLCN_EXPB, :VLCN_EXPP, :VLCN_EXPPE, :VLCN_EXPT, :VLCN_EXP_AREA, :VLCN_HLRB,
46
+ :VLCN_HLRP, :VLCN_HLRR, :VLCN_RISKR, :VLCN_RISKS, :VLCN_RISKV, :WFIR_AFREQ, :WFIR_ALRA, :WFIR_ALRB, :WFIR_ALRP,
47
+ :WFIR_ALR_NPCTL, :WFIR_EALA, :WFIR_EALB, :WFIR_EALP, :WFIR_EALPE, :WFIR_EALR, :WFIR_EALS, :WFIR_EALT, :WFIR_EVNTS,
48
+ :WFIR_EXPA, :WFIR_EXPB, :WFIR_EXPP, :WFIR_EXPPE, :WFIR_EXPT, :WFIR_EXP_AREA, :WFIR_HLRA, :WFIR_HLRB, :WFIR_HLRP,
49
+ :WFIR_HLRR, :WFIR_RISKR, :WFIR_RISKS, :WFIR_RISKV, :WNTW_AFREQ, :WNTW_ALRA, :WNTW_ALRB, :WNTW_ALRP, :WNTW_ALR_NPCTL,
50
+ :WNTW_EALA, :WNTW_EALB, :WNTW_EALP, :WNTW_EALPE, :WNTW_EALR, :WNTW_EALS, :WNTW_EALT, :WNTW_EVNTS, :WNTW_EXPA,
51
+ :WNTW_EXPB, :WNTW_EXPP, :WNTW_EXPPE, :WNTW_EXPT, :WNTW_EXP_AREA, :WNTW_HLRA, :WNTW_HLRB, :WNTW_HLRP, :WNTW_HLRR,
52
+ :WNTW_RISKR, :WNTW_RISKS, :WNTW_RISKV
53
+
54
+ def initialize(obj)
55
+ @AGRIVALUE = obj['AGRIVALUE']
56
+ @ALR_NPCTL = obj['ALR_NPCTL']
57
+ @ALR_VALA = obj['ALR_VALA']
58
+ @ALR_VALB = obj['ALR_VALB']
59
+ @ALR_VALP = obj['ALR_VALP']
60
+ @ALR_VRA_NPCTL = obj['ALR_VRA_NPCTL']
61
+ @AREA = obj['AREA']
62
+ @AVLN_AFREQ = obj['AVLN_AFREQ']
63
+ @AVLN_ALRB = obj['AVLN_ALRB']
64
+ @AVLN_ALRP = obj['AVLN_ALRP']
65
+ @AVLN_ALR_NPCTL = obj['AVLN_ALR_NPCTL']
66
+ @AVLN_EALB = obj['AVLN_EALB']
67
+ @AVLN_EALP = obj['AVLN_EALP']
68
+ @AVLN_EALPE = obj['AVLN_EALPE']
69
+ @AVLN_EALR = obj['AVLN_EALR']
70
+ @AVLN_EALS = obj['AVLN_EALS']
71
+ @AVLN_EALT = obj['AVLN_EALT']
72
+ @AVLN_EVNTS = obj['AVLN_EVNTS']
73
+ @AVLN_EXPB = obj['AVLN_EXPB']
74
+ @AVLN_EXPP = obj['AVLN_EXPP']
75
+ @AVLN_EXPPE = obj['AVLN_EXPPE']
76
+ @AVLN_EXPT = obj['AVLN_EXPT']
77
+ @AVLN_EXP_AREA = obj['AVLN_EXP_AREA']
78
+ @AVLN_HLRB = obj['AVLN_HLRB']
79
+ @AVLN_HLRP = obj['AVLN_HLRP']
80
+ @AVLN_HLRR = obj['AVLN_HLRR']
81
+ @AVLN_RISKR = obj['AVLN_RISKR']
82
+ @AVLN_RISKS = obj['AVLN_RISKS']
83
+ @AVLN_RISKV = obj['AVLN_RISKV']
84
+ @BUILDVALUE = obj['BUILDVALUE']
85
+ @CFLD_AFREQ = obj['CFLD_AFREQ']
86
+ @CFLD_ALRB = obj['CFLD_ALRB']
87
+ @CFLD_ALRP = obj['CFLD_ALRP']
88
+ @CFLD_ALR_NPCTL = obj['CFLD_ALR_NPCTL']
89
+ @CFLD_EALB = obj['CFLD_EALB']
90
+ @CFLD_EALP = obj['CFLD_EALP']
91
+ @CFLD_EALPE = obj['CFLD_EALPE']
92
+ @CFLD_EALR = obj['CFLD_EALR']
93
+ @CFLD_EALS = obj['CFLD_EALS']
94
+ @CFLD_EALT = obj['CFLD_EALT']
95
+ @CFLD_EVNTS = obj['CFLD_EVNTS']
96
+ @CFLD_EXPB = obj['CFLD_EXPB']
97
+ @CFLD_EXPP = obj['CFLD_EXPP']
98
+ @CFLD_EXPPE = obj['CFLD_EXPPE']
99
+ @CFLD_EXPT = obj['CFLD_EXPT']
100
+ @CFLD_EXP_AREA = obj['CFLD_EXP_AREA']
101
+ @CFLD_HLRB = obj['CFLD_HLRB']
102
+ @CFLD_HLRP = obj['CFLD_HLRP']
103
+ @CFLD_HLRR = obj['CFLD_HLRR']
104
+ @CFLD_RISKR = obj['CFLD_RISKR']
105
+ @CFLD_RISKS = obj['CFLD_RISKS']
106
+ @CFLD_RISKV = obj['CFLD_RISKV']
107
+ @COUNTY = obj['COUNTY']
108
+ @COUNTYFIPS = obj['COUNTYFIPS']
109
+ @COUNTYTYPE = obj['COUNTYTYPE']
110
+ @CRF_VALUE = obj['CRF_VALUE']
111
+ @CWAV_AFREQ = obj['CWAV_AFREQ']
112
+ @CWAV_ALRA = obj['CWAV_ALRA']
113
+ @CWAV_ALRB = obj['CWAV_ALRB']
114
+ @CWAV_ALRP = obj['CWAV_ALRP']
115
+ @CWAV_ALR_NPCTL = obj['CWAV_ALR_NPCTL']
116
+ @CWAV_EALA = obj['CWAV_EALA']
117
+ @CWAV_EALB = obj['CWAV_EALB']
118
+ @CWAV_EALP = obj['CWAV_EALP']
119
+ @CWAV_EALPE = obj['CWAV_EALPE']
120
+ @CWAV_EALR = obj['CWAV_EALR']
121
+ @CWAV_EALS = obj['CWAV_EALS']
122
+ @CWAV_EALT = obj['CWAV_EALT']
123
+ @CWAV_EVNTS = obj['CWAV_EVNTS']
124
+ @CWAV_EXPA = obj['CWAV_EXPA']
125
+ @CWAV_EXPB = obj['CWAV_EXPB']
126
+ @CWAV_EXPP = obj['CWAV_EXPP']
127
+ @CWAV_EXPPE = obj['CWAV_EXPPE']
128
+ @CWAV_EXPT = obj['CWAV_EXPT']
129
+ @CWAV_EXP_AREA = obj['CWAV_EXP_AREA']
130
+ @CWAV_HLRA = obj['CWAV_HLRA']
131
+ @CWAV_HLRB = obj['CWAV_HLRB']
132
+ @CWAV_HLRP = obj['CWAV_HLRP']
133
+ @CWAV_HLRR = obj['CWAV_HLRR']
134
+ @CWAV_RISKR = obj['CWAV_RISKR']
135
+ @CWAV_RISKS = obj['CWAV_RISKS']
136
+ @CWAV_RISKV = obj['CWAV_RISKV']
137
+ @DRGT_AFREQ = obj['DRGT_AFREQ']
138
+ @DRGT_ALRA = obj['DRGT_ALRA']
139
+ @DRGT_ALR_NPCTL = obj['DRGT_ALR_NPCTL']
140
+ @DRGT_EALA = obj['DRGT_EALA']
141
+ @DRGT_EALR = obj['DRGT_EALR']
142
+ @DRGT_EALS = obj['DRGT_EALS']
143
+ @DRGT_EALT = obj['DRGT_EALT']
144
+ @DRGT_EVNTS = obj['DRGT_EVNTS']
145
+ @DRGT_EXPA = obj['DRGT_EXPA']
146
+ @DRGT_EXPT = obj['DRGT_EXPT']
147
+ @DRGT_EXP_AREA = obj['DRGT_EXP_AREA']
148
+ @DRGT_HLRA = obj['DRGT_HLRA']
149
+ @DRGT_HLRR = obj['DRGT_HLRR']
150
+ @DRGT_RISKR = obj['DRGT_RISKR']
151
+ @DRGT_RISKS = obj['DRGT_RISKS']
152
+ @DRGT_RISKV = obj['DRGT_RISKV']
153
+ @EAL_RATNG = obj['EAL_RATNG']
154
+ @EAL_SCORE = obj['EAL_SCORE']
155
+ @EAL_SPCTL = obj['EAL_SPCTL']
156
+ @EAL_VALA = obj['EAL_VALA']
157
+ @EAL_VALB = obj['EAL_VALB']
158
+ @EAL_VALP = obj['EAL_VALP']
159
+ @EAL_VALPE = obj['EAL_VALPE']
160
+ @EAL_VALT = obj['EAL_VALT']
161
+ @ERQK_AFREQ = obj['ERQK_AFREQ']
162
+ @ERQK_ALRB = obj['ERQK_ALRB']
163
+ @ERQK_ALRP = obj['ERQK_ALRP']
164
+ @ERQK_ALR_NPCTL = obj['ERQK_ALR_NPCTL']
165
+ @ERQK_EALB = obj['ERQK_EALB']
166
+ @ERQK_EALP = obj['ERQK_EALP']
167
+ @ERQK_EALPE = obj['ERQK_EALPE']
168
+ @ERQK_EALR = obj['ERQK_EALR']
169
+ @ERQK_EALS = obj['ERQK_EALS']
170
+ @ERQK_EALT = obj['ERQK_EALT']
171
+ @ERQK_EVNTS = obj['ERQK_EVNTS']
172
+ @ERQK_EXPB = obj['ERQK_EXPB']
173
+ @ERQK_EXPP = obj['ERQK_EXPP']
174
+ @ERQK_EXPPE = obj['ERQK_EXPPE']
175
+ @ERQK_EXPT = obj['ERQK_EXPT']
176
+ @ERQK_EXP_AREA = obj['ERQK_EXP_AREA']
177
+ @ERQK_HLRB = obj['ERQK_HLRB']
178
+ @ERQK_HLRP = obj['ERQK_HLRP']
179
+ @ERQK_HLRR = obj['ERQK_HLRR']
180
+ @ERQK_RISKR = obj['ERQK_RISKR']
181
+ @ERQK_RISKS = obj['ERQK_RISKS']
182
+ @ERQK_RISKV = obj['ERQK_RISKV']
183
+ @HAIL_AFREQ = obj['HAIL_AFREQ']
184
+ @HAIL_ALRA = obj['HAIL_ALRA']
185
+ @HAIL_ALRB = obj['HAIL_ALRB']
186
+ @HAIL_ALRP = obj['HAIL_ALRP']
187
+ @HAIL_ALR_NPCTL = obj['HAIL_ALR_NPCTL']
188
+ @HAIL_EALA = obj['HAIL_EALA']
189
+ @HAIL_EALB = obj['HAIL_EALB']
190
+ @HAIL_EALP = obj['HAIL_EALP']
191
+ @HAIL_EALPE = obj['HAIL_EALPE']
192
+ @HAIL_EALR = obj['HAIL_EALR']
193
+ @HAIL_EALS = obj['HAIL_EALS']
194
+ @HAIL_EALT = obj['HAIL_EALT']
195
+ @HAIL_EVNTS = obj['HAIL_EVNTS']
196
+ @HAIL_EXPA = obj['HAIL_EXPA']
197
+ @HAIL_EXPB = obj['HAIL_EXPB']
198
+ @HAIL_EXPP = obj['HAIL_EXPP']
199
+ @HAIL_EXPPE = obj['HAIL_EXPPE']
200
+ @HAIL_EXPT = obj['HAIL_EXPT']
201
+ @HAIL_EXP_AREA = obj['HAIL_EXP_AREA']
202
+ @HAIL_HLRA = obj['HAIL_HLRA']
203
+ @HAIL_HLRB = obj['HAIL_HLRB']
204
+ @HAIL_HLRP = obj['HAIL_HLRP']
205
+ @HAIL_HLRR = obj['HAIL_HLRR']
206
+ @HAIL_RISKR = obj['HAIL_RISKR']
207
+ @HAIL_RISKS = obj['HAIL_RISKS']
208
+ @HAIL_RISKV = obj['HAIL_RISKV']
209
+ @HRCN_AFREQ = obj['HRCN_AFREQ']
210
+ @HRCN_ALRA = obj['HRCN_ALRA']
211
+ @HRCN_ALRB = obj['HRCN_ALRB']
212
+ @HRCN_ALRP = obj['HRCN_ALRP']
213
+ @HRCN_ALR_NPCTL = obj['HRCN_ALR_NPCTL']
214
+ @HRCN_EALA = obj['HRCN_EALA']
215
+ @HRCN_EALB = obj['HRCN_EALB']
216
+ @HRCN_EALP = obj['HRCN_EALP']
217
+ @HRCN_EALPE = obj['HRCN_EALPE']
218
+ @HRCN_EALR = obj['HRCN_EALR']
219
+ @HRCN_EALS = obj['HRCN_EALS']
220
+ @HRCN_EALT = obj['HRCN_EALT']
221
+ @HRCN_EVNTS = obj['HRCN_EVNTS']
222
+ @HRCN_EXPA = obj['HRCN_EXPA']
223
+ @HRCN_EXPB = obj['HRCN_EXPB']
224
+ @HRCN_EXPP = obj['HRCN_EXPP']
225
+ @HRCN_EXPPE = obj['HRCN_EXPPE']
226
+ @HRCN_EXPT = obj['HRCN_EXPT']
227
+ @HRCN_EXP_AREA = obj['HRCN_EXP_AREA']
228
+ @HRCN_HLRA = obj['HRCN_HLRA']
229
+ @HRCN_HLRB = obj['HRCN_HLRB']
230
+ @HRCN_HLRP = obj['HRCN_HLRP']
231
+ @HRCN_HLRR = obj['HRCN_HLRR']
232
+ @HRCN_RISKR = obj['HRCN_RISKR']
233
+ @HRCN_RISKS = obj['HRCN_RISKS']
234
+ @HRCN_RISKV = obj['HRCN_RISKV']
235
+ @HWAV_AFREQ = obj['HWAV_AFREQ']
236
+ @HWAV_ALRA = obj['HWAV_ALRA']
237
+ @HWAV_ALRB = obj['HWAV_ALRB']
238
+ @HWAV_ALRP = obj['HWAV_ALRP']
239
+ @HWAV_ALR_NPCTL = obj['HWAV_ALR_NPCTL']
240
+ @HWAV_EALA = obj['HWAV_EALA']
241
+ @HWAV_EALB = obj['HWAV_EALB']
242
+ @HWAV_EALP = obj['HWAV_EALP']
243
+ @HWAV_EALPE = obj['HWAV_EALPE']
244
+ @HWAV_EALR = obj['HWAV_EALR']
245
+ @HWAV_EALS = obj['HWAV_EALS']
246
+ @HWAV_EALT = obj['HWAV_EALT']
247
+ @HWAV_EVNTS = obj['HWAV_EVNTS']
248
+ @HWAV_EXPA = obj['HWAV_EXPA']
249
+ @HWAV_EXPB = obj['HWAV_EXPB']
250
+ @HWAV_EXPP = obj['HWAV_EXPP']
251
+ @HWAV_EXPPE = obj['HWAV_EXPPE']
252
+ @HWAV_EXPT = obj['HWAV_EXPT']
253
+ @HWAV_EXP_AREA = obj['HWAV_EXP_AREA']
254
+ @HWAV_HLRA = obj['HWAV_HLRA']
255
+ @HWAV_HLRB = obj['HWAV_HLRB']
256
+ @HWAV_HLRP = obj['HWAV_HLRP']
257
+ @HWAV_HLRR = obj['HWAV_HLRR']
258
+ @HWAV_RISKR = obj['HWAV_RISKR']
259
+ @HWAV_RISKS = obj['HWAV_RISKS']
260
+ @HWAV_RISKV = obj['HWAV_RISKV']
261
+ @ISTM_AFREQ = obj['ISTM_AFREQ']
262
+ @ISTM_ALRB = obj['ISTM_ALRB']
263
+ @ISTM_ALRP = obj['ISTM_ALRP']
264
+ @ISTM_ALR_NPCTL = obj['ISTM_ALR_NPCTL']
265
+ @ISTM_EALB = obj['ISTM_EALB']
266
+ @ISTM_EALP = obj['ISTM_EALP']
267
+ @ISTM_EALPE = obj['ISTM_EALPE']
268
+ @ISTM_EALR = obj['ISTM_EALR']
269
+ @ISTM_EALS = obj['ISTM_EALS']
270
+ @ISTM_EALT = obj['ISTM_EALT']
271
+ @ISTM_EVNTS = obj['ISTM_EVNTS']
272
+ @ISTM_EXPB = obj['ISTM_EXPB']
273
+ @ISTM_EXPP = obj['ISTM_EXPP']
274
+ @ISTM_EXPPE = obj['ISTM_EXPPE']
275
+ @ISTM_EXPT = obj['ISTM_EXPT']
276
+ @ISTM_EXP_AREA = obj['ISTM_EXP_AREA']
277
+ @ISTM_HLRB = obj['ISTM_HLRB']
278
+ @ISTM_HLRP = obj['ISTM_HLRP']
279
+ @ISTM_HLRR = obj['ISTM_HLRR']
280
+ @ISTM_RISKR = obj['ISTM_RISKR']
281
+ @ISTM_RISKS = obj['ISTM_RISKS']
282
+ @ISTM_RISKV = obj['ISTM_RISKV']
283
+ @LNDS_AFREQ = obj['LNDS_AFREQ']
284
+ @LNDS_ALRB = obj['LNDS_ALRB']
285
+ @LNDS_ALRP = obj['LNDS_ALRP']
286
+ @LNDS_ALR_NPCTL = obj['LNDS_ALR_NPCTL']
287
+ @LNDS_EALB = obj['LNDS_EALB']
288
+ @LNDS_EALP = obj['LNDS_EALP']
289
+ @LNDS_EALPE = obj['LNDS_EALPE']
290
+ @LNDS_EALR = obj['LNDS_EALR']
291
+ @LNDS_EALS = obj['LNDS_EALS']
292
+ @LNDS_EALT = obj['LNDS_EALT']
293
+ @LNDS_EVNTS = obj['LNDS_EVNTS']
294
+ @LNDS_EXPB = obj['LNDS_EXPB']
295
+ @LNDS_EXPP = obj['LNDS_EXPP']
296
+ @LNDS_EXPPE = obj['LNDS_EXPPE']
297
+ @LNDS_EXPT = obj['LNDS_EXPT']
298
+ @LNDS_EXP_AREA = obj['LNDS_EXP_AREA']
299
+ @LNDS_HLRB = obj['LNDS_HLRB']
300
+ @LNDS_HLRP = obj['LNDS_HLRP']
301
+ @LNDS_HLRR = obj['LNDS_HLRR']
302
+ @LNDS_RISKR = obj['LNDS_RISKR']
303
+ @LNDS_RISKS = obj['LNDS_RISKS']
304
+ @LNDS_RISKV = obj['LNDS_RISKV']
305
+ @LTNG_AFREQ = obj['LTNG_AFREQ']
306
+ @LTNG_ALRB = obj['LTNG_ALRB']
307
+ @LTNG_ALRP = obj['LTNG_ALRP']
308
+ @LTNG_ALR_NPCTL = obj['LTNG_ALR_NPCTL']
309
+ @LTNG_EALB = obj['LTNG_EALB']
310
+ @LTNG_EALP = obj['LTNG_EALP']
311
+ @LTNG_EALPE = obj['LTNG_EALPE']
312
+ @LTNG_EALR = obj['LTNG_EALR']
313
+ @LTNG_EALS = obj['LTNG_EALS']
314
+ @LTNG_EALT = obj['LTNG_EALT']
315
+ @LTNG_EVNTS = obj['LTNG_EVNTS']
316
+ @LTNG_EXPB = obj['LTNG_EXPB']
317
+ @LTNG_EXPP = obj['LTNG_EXPP']
318
+ @LTNG_EXPPE = obj['LTNG_EXPPE']
319
+ @LTNG_EXPT = obj['LTNG_EXPT']
320
+ @LTNG_EXP_AREA = obj['LTNG_EXP_AREA']
321
+ @LTNG_HLRB = obj['LTNG_HLRB']
322
+ @LTNG_HLRP = obj['LTNG_HLRP']
323
+ @LTNG_HLRR = obj['LTNG_HLRR']
324
+ @LTNG_RISKR = obj['LTNG_RISKR']
325
+ @LTNG_RISKS = obj['LTNG_RISKS']
326
+ @LTNG_RISKV = obj['LTNG_RISKV']
327
+ @NRI_VER = obj['NRI_VER']
328
+ @POPULATION = obj['POPULATION']
329
+ @RESL_RATNG = obj['RESL_RATNG']
330
+ @RESL_SCORE = obj['RESL_SCORE']
331
+ @RESL_SPCTL = obj['RESL_SPCTL']
332
+ @RESL_VALUE = obj['RESL_VALUE']
333
+ @RFLD_AFREQ = obj['RFLD_AFREQ']
334
+ @RFLD_ALRA = obj['RFLD_ALRA']
335
+ @RFLD_ALRB = obj['RFLD_ALRB']
336
+ @RFLD_ALRP = obj['RFLD_ALRP']
337
+ @RFLD_ALR_NPCTL = obj['RFLD_ALR_NPCTL']
338
+ @RFLD_EALA = obj['RFLD_EALA']
339
+ @RFLD_EALB = obj['RFLD_EALB']
340
+ @RFLD_EALP = obj['RFLD_EALP']
341
+ @RFLD_EALPE = obj['RFLD_EALPE']
342
+ @RFLD_EALR = obj['RFLD_EALR']
343
+ @RFLD_EALS = obj['RFLD_EALS']
344
+ @RFLD_EALT = obj['RFLD_EALT']
345
+ @RFLD_EVNTS = obj['RFLD_EVNTS']
346
+ @RFLD_EXPA = obj['RFLD_EXPA']
347
+ @RFLD_EXPB = obj['RFLD_EXPB']
348
+ @RFLD_EXPP = obj['RFLD_EXPP']
349
+ @RFLD_EXPPE = obj['RFLD_EXPPE']
350
+ @RFLD_EXPT = obj['RFLD_EXPT']
351
+ @RFLD_EXP_AREA = obj['RFLD_EXP_AREA']
352
+ @RFLD_HLRA = obj['RFLD_HLRA']
353
+ @RFLD_HLRB = obj['RFLD_HLRB']
354
+ @RFLD_HLRP = obj['RFLD_HLRP']
355
+ @RFLD_HLRR = obj['RFLD_HLRR']
356
+ @RFLD_RISKR = obj['RFLD_RISKR']
357
+ @RFLD_RISKS = obj['RFLD_RISKS']
358
+ @RFLD_RISKV = obj['RFLD_RISKV']
359
+ @RISK_RATNG = obj['RISK_RATNG']
360
+ @RISK_SCORE = obj['RISK_SCORE']
361
+ @RISK_SPCTL = obj['RISK_SPCTL']
362
+ @RISK_VALUE = obj['RISK_VALUE']
363
+ @SOVI_RATNG = obj['SOVI_RATNG']
364
+ @SOVI_SCORE = obj['SOVI_SCORE']
365
+ @SOVI_SPCTL = obj['SOVI_SPCTL']
366
+ @STATE = obj['STATE']
367
+ @STATEABBRV = obj['STATEABBRV']
368
+ @STATEFIPS = obj['STATEFIPS']
369
+ @STCOFIPS = obj['STCOFIPS']
370
+ @SWND_AFREQ = obj['SWND_AFREQ']
371
+ @SWND_ALRA = obj['SWND_ALRA']
372
+ @SWND_ALRB = obj['SWND_ALRB']
373
+ @SWND_ALRP = obj['SWND_ALRP']
374
+ @SWND_ALR_NPCTL = obj['SWND_ALR_NPCTL']
375
+ @SWND_EALA = obj['SWND_EALA']
376
+ @SWND_EALB = obj['SWND_EALB']
377
+ @SWND_EALP = obj['SWND_EALP']
378
+ @SWND_EALPE = obj['SWND_EALPE']
379
+ @SWND_EALR = obj['SWND_EALR']
380
+ @SWND_EALS = obj['SWND_EALS']
381
+ @SWND_EALT = obj['SWND_EALT']
382
+ @SWND_EVNTS = obj['SWND_EVNTS']
383
+ @SWND_EXPA = obj['SWND_EXPA']
384
+ @SWND_EXPB = obj['SWND_EXPB']
385
+ @SWND_EXPP = obj['SWND_EXPP']
386
+ @SWND_EXPPE = obj['SWND_EXPPE']
387
+ @SWND_EXPT = obj['SWND_EXPT']
388
+ @SWND_EXP_AREA = obj['SWND_EXP_AREA']
389
+ @SWND_HLRA = obj['SWND_HLRA']
390
+ @SWND_HLRB = obj['SWND_HLRB']
391
+ @SWND_HLRP = obj['SWND_HLRP']
392
+ @SWND_HLRR = obj['SWND_HLRR']
393
+ @SWND_RISKR = obj['SWND_RISKR']
394
+ @SWND_RISKS = obj['SWND_RISKS']
395
+ @SWND_RISKV = obj['SWND_RISKV']
396
+ @TRACT = obj['TRACT']
397
+ @TRACTFIPS = obj['TRACTFIPS']
398
+ @TRND_AFREQ = obj['TRND_AFREQ']
399
+ @TRND_ALRA = obj['TRND_ALRA']
400
+ @TRND_ALRB = obj['TRND_ALRB']
401
+ @TRND_ALRP = obj['TRND_ALRP']
402
+ @TRND_ALR_NPCTL = obj['TRND_ALR_NPCTL']
403
+ @TRND_EALA = obj['TRND_EALA']
404
+ @TRND_EALB = obj['TRND_EALB']
405
+ @TRND_EALP = obj['TRND_EALP']
406
+ @TRND_EALPE = obj['TRND_EALPE']
407
+ @TRND_EALR = obj['TRND_EALR']
408
+ @TRND_EALS = obj['TRND_EALS']
409
+ @TRND_EALT = obj['TRND_EALT']
410
+ @TRND_EVNTS = obj['TRND_EVNTS']
411
+ @TRND_EXPA = obj['TRND_EXPA']
412
+ @TRND_EXPB = obj['TRND_EXPB']
413
+ @TRND_EXPP = obj['TRND_EXPP']
414
+ @TRND_EXPPE = obj['TRND_EXPPE']
415
+ @TRND_EXPT = obj['TRND_EXPT']
416
+ @TRND_EXP_AREA = obj['TRND_EXP_AREA']
417
+ @TRND_HLRA = obj['TRND_HLRA']
418
+ @TRND_HLRB = obj['TRND_HLRB']
419
+ @TRND_HLRP = obj['TRND_HLRP']
420
+ @TRND_HLRR = obj['TRND_HLRR']
421
+ @TRND_RISKR = obj['TRND_RISKR']
422
+ @TRND_RISKS = obj['TRND_RISKS']
423
+ @TRND_RISKV = obj['TRND_RISKV']
424
+ @TSUN_AFREQ = obj['TSUN_AFREQ']
425
+ @TSUN_ALRB = obj['TSUN_ALRB']
426
+ @TSUN_ALRP = obj['TSUN_ALRP']
427
+ @TSUN_ALR_NPCTL = obj['TSUN_ALR_NPCTL']
428
+ @TSUN_EALB = obj['TSUN_EALB']
429
+ @TSUN_EALP = obj['TSUN_EALP']
430
+ @TSUN_EALPE = obj['TSUN_EALPE']
431
+ @TSUN_EALR = obj['TSUN_EALR']
432
+ @TSUN_EALS = obj['TSUN_EALS']
433
+ @TSUN_EALT = obj['TSUN_EALT']
434
+ @TSUN_EVNTS = obj['TSUN_EVNTS']
435
+ @TSUN_EXPB = obj['TSUN_EXPB']
436
+ @TSUN_EXPP = obj['TSUN_EXPP']
437
+ @TSUN_EXPPE = obj['TSUN_EXPPE']
438
+ @TSUN_EXPT = obj['TSUN_EXPT']
439
+ @TSUN_EXP_AREA = obj['TSUN_EXP_AREA']
440
+ @TSUN_HLRB = obj['TSUN_HLRB']
441
+ @TSUN_HLRP = obj['TSUN_HLRP']
442
+ @TSUN_HLRR = obj['TSUN_HLRR']
443
+ @TSUN_RISKR = obj['TSUN_RISKR']
444
+ @TSUN_RISKS = obj['TSUN_RISKS']
445
+ @TSUN_RISKV = obj['TSUN_RISKV']
446
+ @VLCN_AFREQ = obj['VLCN_AFREQ']
447
+ @VLCN_ALRB = obj['VLCN_ALRB']
448
+ @VLCN_ALRP = obj['VLCN_ALRP']
449
+ @VLCN_ALR_NPCTL = obj['VLCN_ALR_NPCTL']
450
+ @VLCN_EALB = obj['VLCN_EALB']
451
+ @VLCN_EALP = obj['VLCN_EALP']
452
+ @VLCN_EALPE = obj['VLCN_EALPE']
453
+ @VLCN_EALR = obj['VLCN_EALR']
454
+ @VLCN_EALS = obj['VLCN_EALS']
455
+ @VLCN_EALT = obj['VLCN_EALT']
456
+ @VLCN_EVNTS = obj['VLCN_EVNTS']
457
+ @VLCN_EXPB = obj['VLCN_EXPB']
458
+ @VLCN_EXPP = obj['VLCN_EXPP']
459
+ @VLCN_EXPPE = obj['VLCN_EXPPE']
460
+ @VLCN_EXPT = obj['VLCN_EXPT']
461
+ @VLCN_EXP_AREA = obj['VLCN_EXP_AREA']
462
+ @VLCN_HLRB = obj['VLCN_HLRB']
463
+ @VLCN_HLRP = obj['VLCN_HLRP']
464
+ @VLCN_HLRR = obj['VLCN_HLRR']
465
+ @VLCN_RISKR = obj['VLCN_RISKR']
466
+ @VLCN_RISKS = obj['VLCN_RISKS']
467
+ @VLCN_RISKV = obj['VLCN_RISKV']
468
+ @WFIR_AFREQ = obj['WFIR_AFREQ']
469
+ @WFIR_ALRA = obj['WFIR_ALRA']
470
+ @WFIR_ALRB = obj['WFIR_ALRB']
471
+ @WFIR_ALRP = obj['WFIR_ALRP']
472
+ @WFIR_ALR_NPCTL = obj['WFIR_ALR_NPCTL']
473
+ @WFIR_EALA = obj['WFIR_EALA']
474
+ @WFIR_EALB = obj['WFIR_EALB']
475
+ @WFIR_EALP = obj['WFIR_EALP']
476
+ @WFIR_EALPE = obj['WFIR_EALPE']
477
+ @WFIR_EALR = obj['WFIR_EALR']
478
+ @WFIR_EALS = obj['WFIR_EALS']
479
+ @WFIR_EALT = obj['WFIR_EALT']
480
+ @WFIR_EVNTS = obj['WFIR_EVNTS']
481
+ @WFIR_EXPA = obj['WFIR_EXPA']
482
+ @WFIR_EXPB = obj['WFIR_EXPB']
483
+ @WFIR_EXPP = obj['WFIR_EXPP']
484
+ @WFIR_EXPPE = obj['WFIR_EXPPE']
485
+ @WFIR_EXPT = obj['WFIR_EXPT']
486
+ @WFIR_EXP_AREA = obj['WFIR_EXP_AREA']
487
+ @WFIR_HLRA = obj['WFIR_HLRA']
488
+ @WFIR_HLRB = obj['WFIR_HLRB']
489
+ @WFIR_HLRP = obj['WFIR_HLRP']
490
+ @WFIR_HLRR = obj['WFIR_HLRR']
491
+ @WFIR_RISKR = obj['WFIR_RISKR']
492
+ @WFIR_RISKS = obj['WFIR_RISKS']
493
+ @WFIR_RISKV = obj['WFIR_RISKV']
494
+ @WNTW_AFREQ = obj['WNTW_AFREQ']
495
+ @WNTW_ALRA = obj['WNTW_ALRA']
496
+ @WNTW_ALRB = obj['WNTW_ALRB']
497
+ @WNTW_ALRP = obj['WNTW_ALRP']
498
+ @WNTW_ALR_NPCTL = obj['WNTW_ALR_NPCTL']
499
+ @WNTW_EALA = obj['WNTW_EALA']
500
+ @WNTW_EALB = obj['WNTW_EALB']
501
+ @WNTW_EALP = obj['WNTW_EALP']
502
+ @WNTW_EALPE = obj['WNTW_EALPE']
503
+ @WNTW_EALR = obj['WNTW_EALR']
504
+ @WNTW_EALS = obj['WNTW_EALS']
505
+ @WNTW_EALT = obj['WNTW_EALT']
506
+ @WNTW_EVNTS = obj['WNTW_EVNTS']
507
+ @WNTW_EXPA = obj['WNTW_EXPA']
508
+ @WNTW_EXPB = obj['WNTW_EXPB']
509
+ @WNTW_EXPP = obj['WNTW_EXPP']
510
+ @WNTW_EXPPE = obj['WNTW_EXPPE']
511
+ @WNTW_EXPT = obj['WNTW_EXPT']
512
+ @WNTW_EXP_AREA = obj['WNTW_EXP_AREA']
513
+ @WNTW_HLRA = obj['WNTW_HLRA']
514
+ @WNTW_HLRB = obj['WNTW_HLRB']
515
+ @WNTW_HLRP = obj['WNTW_HLRP']
516
+ @WNTW_HLRR = obj['WNTW_HLRR']
517
+ @WNTW_RISKR = obj['WNTW_RISKR']
518
+ @WNTW_RISKS = obj['WNTW_RISKS']
519
+ @WNTW_RISKV = obj['WNTW_RISKV']
520
+ end
521
+ end
522
+ end
523
+ end
524
+ end
@@ -0,0 +1,19 @@
1
+ require_relative "attributes"
2
+
3
+ module SmartyStreets
4
+ module USEnrichment
5
+ module Risk
6
+ class Response
7
+ attr_reader :smarty_key, :data_set_name, :matched_address, :attributes, :etag
8
+
9
+ def initialize(obj, etag=nil)
10
+ @smarty_key = obj['smarty_key']
11
+ @data_set_name = obj['data_set_name']
12
+ @matched_address = obj['matched_address']
13
+ @attributes = Attributes.new(obj['attributes'])
14
+ @etag = etag
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -3,10 +3,11 @@ module SmartyStreets
3
3
  module Secondary
4
4
  module Count
5
5
  class Response
6
- attr_reader :smarty_key, :count, :etag
6
+ attr_reader :smarty_key, :matched_address, :count, :etag
7
7
 
8
8
  def initialize(obj, etag=nil)
9
9
  @smarty_key = obj['smarty_key']
10
+ @matched_address = obj['matched_address']
10
11
  @count = obj['count']
11
12
  @etag = etag
12
13
  end
@@ -6,10 +6,11 @@ module SmartyStreets
6
6
  module USEnrichment
7
7
  module Secondary
8
8
  class Response
9
- attr_reader :smarty_key, :root_address, :aliases, :secondaries, :etag
9
+ attr_reader :smarty_key, :matched_address, :root_address, :aliases, :secondaries, :etag
10
10
 
11
11
  def initialize(obj, etag=nil)
12
12
  @smarty_key = obj['smarty_key']
13
+ @matched_address = obj['matched_address']
13
14
  @root_address = Secondary::RootAddressEntry.new(obj['root_address'])
14
15
  if !obj['aliases'].nil?
15
16
  @aliases = createAliasesArray(obj['aliases'])
@@ -1,11 +1,9 @@
1
1
  require_relative './us_enrichment/property/financial/attributes'
2
2
  require_relative './us_enrichment/property/financial/history_entry'
3
3
  require_relative './us_enrichment/property/financial/response'
4
- require_relative './us_enrichment/property/financial/lookup'
5
4
 
6
5
  require_relative './us_enrichment/property/principal/attributes'
7
6
  require_relative './us_enrichment/property/principal/response'
8
- require_relative './us_enrichment/property/principal/lookup'
9
7
 
10
8
  require_relative './us_enrichment/client'
11
9
 
@@ -1,3 +1,3 @@
1
1
  module SmartyStreets
2
- VERSION = '6.0.0' # DO NOT EDIT (this is updated by a build job when a new release is published)
2
+ VERSION = '6.1.1' # DO NOT EDIT (this is updated by a build job when a new release is published)
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smartystreets_ruby_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - SmartyStreets SDK Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-06-20 00:00:00.000000000 Z
11
+ date: 2025-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -148,21 +148,19 @@ files:
148
148
  - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_county_division_entry.rb
149
149
  - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_tract_entry.rb
150
150
  - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/core_based_stat_area_entry.rb
151
- - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/lookup.rb
152
151
  - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/place_entry.rb
153
152
  - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/response.rb
154
153
  - lib/smartystreets_ruby_sdk/us_enrichment/lookup.rb
155
154
  - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/attributes.rb
156
155
  - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/history_entry.rb
157
- - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/lookup.rb
158
156
  - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/response.rb
159
157
  - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/attributes.rb
160
- - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/lookup.rb
158
+ - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/history_entry.rb
161
159
  - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/response.rb
160
+ - lib/smartystreets_ruby_sdk/us_enrichment/risk/attributes.rb
161
+ - lib/smartystreets_ruby_sdk/us_enrichment/risk/response.rb
162
162
  - lib/smartystreets_ruby_sdk/us_enrichment/secondary/aliases_entry.rb
163
- - lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/lookup.rb
164
163
  - lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/response.rb
165
- - lib/smartystreets_ruby_sdk/us_enrichment/secondary/lookup.rb
166
164
  - lib/smartystreets_ruby_sdk/us_enrichment/secondary/response.rb
167
165
  - lib/smartystreets_ruby_sdk/us_enrichment/secondary/root_address_entry.rb
168
166
  - lib/smartystreets_ruby_sdk/us_enrichment/secondary/secondaries_entry.rb
@@ -1,21 +0,0 @@
1
- module SmartyStreets
2
- module USEnrichment
3
- module GeoReference
4
- class Lookup
5
- attr_reader :smarty_key, :data_set, :data_sub_set, :etag, :custom_param_hash
6
-
7
- def initialize(smarty_key, etag=nil, custom_param_hash=nil)
8
- @smarty_key = smarty_key
9
- @data_set = 'geo-reference'
10
- @data_sub_set = nil
11
- @etag = etag
12
- @custom_param_hash = {}
13
- end
14
-
15
- def add_custom_parameter(parameter, value)
16
- @custom_param_hash[parameter] = value
17
- end
18
- end
19
- end
20
- end
21
- end
@@ -1,23 +0,0 @@
1
- module SmartyStreets
2
- module USEnrichment
3
- module Property
4
- module Financial
5
- class Lookup
6
- attr_reader :smarty_key, :data_set, :data_sub_set, :etag, :custom_param_hash
7
-
8
- def initialize(smarty_key, etag=nil, custom_param_hash=nil)
9
- @smarty_key = smarty_key
10
- @data_set = "property"
11
- @data_sub_set = "financial"
12
- @etag = etag
13
- @custom_param_hash = {}
14
- end
15
-
16
- def add_custom_parameter(parameter, value)
17
- @custom_param_hash[parameter] = value
18
- end
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- module SmartyStreets
2
- module USEnrichment
3
- module Property
4
- module Principal
5
- class Lookup
6
- attr_reader :smarty_key, :data_set, :data_sub_set, :etag, :custom_param_hash
7
-
8
- def initialize(smarty_key, etag=nil, custom_param_hash=nil)
9
- @smarty_key = smarty_key
10
- @data_set = "property"
11
- @data_sub_set = "principal"
12
- @etag = etag
13
- @custom_param_hash = {}
14
- end
15
-
16
- def add_custom_parameter(parameter, value)
17
- @custom_param_hash[parameter] = value
18
- end
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,23 +0,0 @@
1
- module SmartyStreets
2
- module USEnrichment
3
- module Secondary
4
- module Count
5
- class Lookup
6
- attr_reader :smarty_key, :data_set, :data_sub_set, :etag, :custom_param_hash
7
-
8
- def initialize(smarty_key, etag=nil, custom_param_hash=nil)
9
- @smarty_key = smarty_key
10
- @data_set = "secondary"
11
- @data_sub_set = "count"
12
- @etag = etag
13
- @custom_param_hash = {}
14
- end
15
-
16
- def add_custom_parameter(parameter, value)
17
- @custom_param_hash[parameter] = value
18
- end
19
- end
20
- end
21
- end
22
- end
23
- end
@@ -1,21 +0,0 @@
1
- module SmartyStreets
2
- module USEnrichment
3
- module Secondary
4
- class Lookup
5
- attr_reader :smarty_key, :data_set, :data_sub_set, :etag, :custom_param_hash
6
-
7
- def initialize(smarty_key, etag=nil, custom_param_hash=nil)
8
- @smarty_key = smarty_key
9
- @data_set = "secondary"
10
- @data_sub_set = nil
11
- @etag = etag
12
- @custom_param_hash = {}
13
- end
14
-
15
- def add_custom_parameter(parameter, value)
16
- @custom_param_hash[parameter] = value
17
- end
18
- end
19
- end
20
- end
21
- end