lob 6.0.4 → 6.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1f41d96683a73f2c8ba2c864a3c5158d5e73d86ae0e49e1bdfe5a45663caeeb
4
- data.tar.gz: 8d138bf0217b9e1f8af682128b8147e382df44e6261ffd70c55bff12a4d40a93
3
+ metadata.gz: b56d9139a4a3c3fcdf0c7c77574256dbb8525e8a7dabcc4e0172366105088c26
4
+ data.tar.gz: 2fdbc34a8bd71f3ad443822b1d0e3b1286e7983af3c45c499401ace962755ce4
5
5
  SHA512:
6
- metadata.gz: 4d62ef3ee728cd8fffe2c674b067456f8244a23cb89b22c3b92c9c39d3aeb33794adbffd9272fec09c40cc1133ee252b77015d11f5c77e8d139e84f958d350fe
7
- data.tar.gz: 30dfd403a0ba3e8c3a8521451cea68b3239fdee157da568eebca7e2a42c5a1741a1c7c5250dc98c39cb1156c701b701e07b7673b692db5f7164ae39c750f577a
6
+ metadata.gz: 422b6e8b2d9ca04d231a76d229a7e50ea3a261a878db0fb1ced15fd5dfc839fdb45d0c0f7ac670fc75a4399a5422062115079b74980c82f5ee41d78af565a31d
7
+ data.tar.gz: 1db2d131f9374889c8892ad7c114182fa3ccefec61c92ed17c76a3459b52dfe1da74d66eda834b12921e12b0b94a5a56edb37ea2bb3a48929f68250661328c67
data/CODE_SNIPPETS.md CHANGED
@@ -50,11 +50,11 @@ curl https://api.lob.com/v1/addresses \
50
50
  -d "company=Lob" \
51
51
  -d "email=harry@lob.com" \
52
52
  -d "phone=5555555555" \
53
- -d "address_line1=210 King St" \
54
- -d "address_line2=# 6100" \
53
+ -d "address_line1=2261 Market Street" \
54
+ -d "address_line2=Ste 5668" \
55
55
  -d "address_city=San Francisco" \
56
56
  -d "address_state=CA" \
57
- -d "address_zip=94107" \
57
+ -d "address_zip=94114" \
58
58
  -d "address_country=US" \
59
59
  ```
60
60
 
@@ -65,11 +65,11 @@ addressCreate = AddressEditable.new({
65
65
  company: "Lob",
66
66
  email: "harry@lob.com",
67
67
  phone: "5555555555",
68
- address_line1: "210 King St",
69
- address_line2: "# 6100",
68
+ address_line1: "2261 Market Street",
69
+ address_line2: "Ste 5668",
70
70
  address_city: "San Francisco",
71
71
  address_state: "CA",
72
- address_zip: "94107",
72
+ address_zip: "94114",
73
73
  address_country: "US",
74
74
  });
75
75
 
@@ -195,11 +195,11 @@ curl https://api.lob.com/v1/postcards \
195
195
  --data-urlencode "front=<html style='padding: 1in; font-size: 50;'>Front HTML for {{name}}</html>" \
196
196
  --data-urlencode "back=<html style='padding: 1in; font-size: 20;'>Back HTML for {{name}}</html>" \
197
197
  -d "to[name]=Harry Zhang" \
198
- -d "to[address_line1]=210 King St" \
199
- -d "to[address_line2]=# 6100" \
198
+ -d "to[address_line1]=2261 Market Street" \
199
+ -d "to[address_line2]=Ste 5668" \
200
200
  -d "to[address_city]=San Francisco" \
201
201
  -d "to[address_state]=CA" \
202
- -d "to[address_zip]=94107" \
202
+ -d "to[address_zip]=94114" \
203
203
  -d "merge_variables[name]=Harry" \
204
204
  ```
205
205
 
@@ -211,11 +211,11 @@ postcardCreate = PostcardEditable.new({
211
211
  back: "<html style='padding: 1in; font-size: 20;'>Back HTML for {{name}}</html>",
212
212
  to: AddressEditable.new({
213
213
  name: "Harry Zhang",
214
- address_line1: "210 King St",
215
- address_line2: "# 6100",
214
+ address_line1: "2261 Market Street",
215
+ address_line2: "Ste 5668",
216
216
  address_city: "San Francisco",
217
217
  address_state: "CA",
218
- address_zip: "94107",
218
+ address_zip: "94114",
219
219
  }),
220
220
  merge_variables: {
221
221
  name: "Harry"
@@ -304,11 +304,11 @@ curl https://api.lob.com/v1/self_mailers \
304
304
  --data-urlencode "inside=<html style='padding: 1in; font-size: 50;'>Inside HTML for {{name}}</html>" \
305
305
  --data-urlencode "outside=<html style='padding: 1in; font-size: 20;'>Outside HTML for {{name}}</html>" \
306
306
  -d "to[name]=Harry Zhang" \
307
- -d "to[address_line1]=210 King St" \
308
- -d "to[address_line2]=# 6100" \
307
+ -d "to[address_line1]=2261 Market Street" \
308
+ -d "to[address_line2]=Ste 5668" \
309
309
  -d "to[address_city]=San Francisco" \
310
310
  -d "to[address_state]=CA" \
311
- -d "to[address_zip]=94107" \
311
+ -d "to[address_zip]=94114" \
312
312
  -d "merge_variables[name]=Harry" \
313
313
  ```
314
314
 
@@ -320,11 +320,11 @@ selfMailerCreate = SelfMailerEditable.new({
320
320
  outside: "<html style='padding: 1in; font-size: 20;'>Outside HTML for {{name}}</html>",
321
321
  to: AddressEditable.new({
322
322
  name: "Harry Zhang",
323
- address_line1: "210 King St",
324
- address_line2: "# 6100",
323
+ address_line1: "2261 Market Street",
324
+ address_line2: "Ste 5668",
325
325
  address_city: "San Francisco",
326
326
  address_state: "CA",
327
- address_zip: "94107",
327
+ address_zip: "94114",
328
328
  }),
329
329
  merge_variables: {
330
330
  name: "Harry"
@@ -413,11 +413,11 @@ curl https://api.lob.com/v1/letters \
413
413
  --data-urlencode "file=<html style='padding-top: 3in; margin: .5in;'>HTML Letter for {{name}}</html>" \
414
414
  -d "color=true" \
415
415
  -d "to[name]=Harry Zhang" \
416
- -d "to[address_line1]=210 King St" \
417
- -d "to[address_line2]=# 6100" \
416
+ -d "to[address_line1]=2261 Market Street" \
417
+ -d "to[address_line2]=Ste 5668" \
418
418
  -d "to[address_city]=San Francisco" \
419
419
  -d "to[address_state]=CA" \
420
- -d "to[address_zip]=94107" \
420
+ -d "to[address_zip]=94114" \
421
421
  -d "merge_variables[name]=Harry" \
422
422
  -d "cards[]=card_c51ae96f5cebf3e"
423
423
  ```
@@ -430,11 +430,11 @@ letterCreate = LetterEditable.new({
430
430
  color: "true",
431
431
  to: AddressEditable.new({
432
432
  name: "Harry Zhang",
433
- address_line1: "210 King St",
434
- address_line2: "# 6100",
433
+ address_line1: "2261 Market Street",
434
+ address_line2: "Ste 5668",
435
435
  address_city: "San Francisco",
436
436
  address_state: "CA",
437
- address_zip: "94107",
437
+ address_zip: "94114",
438
438
  }),
439
439
  merge_variables: {
440
440
  name: "Harry"
@@ -529,11 +529,11 @@ curl https://api.lob.com/v1/checks \
529
529
  --data-urlencode "check_bottom=<h1 style='padding-top:4in;'>Demo Check for {{name}}</h1>" \
530
530
  -d "from=adr_210a8d4b0b76d77b" \
531
531
  -d "to[name]=Harry Zhang" \
532
- -d "to[address_line1]=210 King St" \
533
- -d "to[address_line2]=# 6100" \
532
+ -d "to[address_line1]=2261 Market Street" \
533
+ -d "to[address_line2]=Ste 5668" \
534
534
  -d "to[address_city]=San Francisco" \
535
535
  -d "to[address_state]=CA" \
536
- -d "to[address_zip]=94107" \
536
+ -d "to[address_zip]=94114" \
537
537
  -d "merge_variables[name]=Harry" \
538
538
  ```
539
539
 
@@ -548,11 +548,11 @@ checkCreate = CheckEditable.new({
548
548
  from: "adr_210a8d4b0b76d77b",
549
549
  to: AddressDomestic.new({
550
550
  name: "Harry Zhang",
551
- address_line1: "210 King St",
552
- address_line2: "# 6100",
551
+ address_line1: "2261 Market Street",
552
+ address_line2: "Ste 5668",
553
553
  address_city: "San Francisco",
554
554
  address_state: "CA",
555
- address_zip: "94107",
555
+ address_zip: "94114",
556
556
  }),
557
557
  merge_variables: {
558
558
  name: "Harry"
@@ -1688,10 +1688,10 @@ end
1688
1688
  curl https://api.lob.com/v1/bulk/us_verifications \
1689
1689
  -u <YOUR LIVE API KEY>: \
1690
1690
  --header "Content-Type: application/x-www-form-urlencoded" \
1691
- --data-urlencode "addresses[0][primary_line]=210 King Street" \
1691
+ --data-urlencode "addresses[0][primary_line]=2261 Market Street" \
1692
1692
  --data-urlencode "addresses[0][city]=San Francisco" \
1693
1693
  --data-urlencode "addresses[0][state]=CA" \
1694
- --data-urlencode "addresses[0][zip_code]=94017" \
1694
+ --data-urlencode "addresses[0][zip_code]=94114" \
1695
1695
  --data-urlencode "addresses[1][primary_line]=185 BERRY ST STE 6600" \
1696
1696
  --data-urlencode "addresses[1][city]=SAN FRANCISCO" \
1697
1697
  --data-urlencode "addresses[1][state]=CA" \
@@ -1703,10 +1703,10 @@ usVerificationsApi = UsVerificationsApi.new(config)
1703
1703
 
1704
1704
 
1705
1705
  verificationData0 = MultipleComponents.new({
1706
- primary_line: "210 King Street",
1706
+ primary_line: "2261 Market Street",
1707
1707
  city: "San Francisco",
1708
1708
  state: "CA",
1709
- zip_code: "94017",
1709
+ zip_code: "94114",
1710
1710
  })
1711
1711
 
1712
1712
  verificationData1 = MultipleComponents.new({
@@ -1735,20 +1735,20 @@ end
1735
1735
  ```bash
1736
1736
  curl https://api.lob.com/v1/us_verifications \
1737
1737
  -u <YOUR_LIVE_API_KEY>: \
1738
- -d "primary_line=210 King Street" \
1738
+ -d "primary_line=2261 Market Street" \
1739
1739
  -d "city=San Francisco" \
1740
1740
  -d "state=CA" \
1741
- -d "zip_code=94017" \
1741
+ -d "zip_code=94114" \
1742
1742
  ```
1743
1743
 
1744
1744
  ```ruby
1745
1745
  usVerificationsApi = UsVerificationsApi.new(config)
1746
1746
 
1747
1747
  verificationData = UsVerificationsWritable.new({
1748
- primary_line: "210 King Street",
1748
+ primary_line: "2261 Market Street",
1749
1749
  city: "San Francisco",
1750
1750
  state: "CA",
1751
- zip_code: "94017",
1751
+ zip_code: "94114",
1752
1752
  })
1753
1753
 
1754
1754
  begin
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lob (6.0.4)
4
+ lob (6.0.6)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -10,14 +10,14 @@ GEM
10
10
  ast (2.4.2)
11
11
  byebug (11.1.3)
12
12
  coderay (1.1.3)
13
- diff-lcs (1.5.0)
13
+ diff-lcs (1.5.1)
14
14
  ethon (0.16.0)
15
15
  ffi (>= 1.15.0)
16
16
  ffi (1.16.3)
17
17
  jaro_winkler (1.5.6)
18
18
  method_source (1.0.0)
19
- parallel (1.23.0)
20
- parser (3.2.2.4)
19
+ parallel (1.24.0)
20
+ parser (3.3.0.5)
21
21
  ast (~> 2.4.1)
22
22
  racc
23
23
  pry (0.14.2)
@@ -26,24 +26,24 @@ GEM
26
26
  pry-byebug (3.10.1)
27
27
  byebug (~> 11.0)
28
28
  pry (>= 0.13, < 0.15)
29
- psych (5.1.1.1)
29
+ psych (5.1.2)
30
30
  stringio
31
- racc (1.7.1)
31
+ racc (1.7.3)
32
32
  rainbow (3.1.1)
33
33
  rake (13.0.6)
34
- rspec (3.12.0)
35
- rspec-core (~> 3.12.0)
36
- rspec-expectations (~> 3.12.0)
37
- rspec-mocks (~> 3.12.0)
38
- rspec-core (3.12.2)
39
- rspec-support (~> 3.12.0)
40
- rspec-expectations (3.12.3)
34
+ rspec (3.13.0)
35
+ rspec-core (~> 3.13.0)
36
+ rspec-expectations (~> 3.13.0)
37
+ rspec-mocks (~> 3.13.0)
38
+ rspec-core (3.13.0)
39
+ rspec-support (~> 3.13.0)
40
+ rspec-expectations (3.13.0)
41
41
  diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.12.0)
43
- rspec-mocks (3.12.6)
42
+ rspec-support (~> 3.13.0)
43
+ rspec-mocks (3.13.0)
44
44
  diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.12.0)
46
- rspec-support (3.12.1)
45
+ rspec-support (~> 3.13.0)
46
+ rspec-support (3.13.0)
47
47
  rubocop (0.66.0)
48
48
  jaro_winkler (~> 1.5.1)
49
49
  parallel (~> 1.10)
@@ -53,8 +53,8 @@ GEM
53
53
  ruby-progressbar (~> 1.7)
54
54
  unicode-display_width (>= 1.4.0, < 1.6)
55
55
  ruby-progressbar (1.13.0)
56
- stringio (3.0.8)
57
- typhoeus (1.4.0)
56
+ stringio (3.1.0)
57
+ typhoeus (1.4.1)
58
58
  ethon (>= 0.9.0)
59
59
  unicode-display_width (1.5.0)
60
60
 
@@ -69,4 +69,4 @@ DEPENDENCIES
69
69
  rubocop (~> 0.66.0)
70
70
 
71
71
  BUNDLED WITH
72
- 2.4.21
72
+ 2.4.22
data/MIGRATION.md CHANGED
@@ -50,12 +50,12 @@ Here is a sample of the legacy lob-ruby CREATE function:
50
50
  company: 'Lob',
51
51
  email: 'harry@lob.com',
52
52
  phone: '5555555555',
53
- address_line1: '210 King St',
54
- address_line2: '# 6100',
53
+ address_line1: '2261 Market Street',
54
+ address_line2: 'Ste 5668',
55
55
  address_city: 'San Francisco',
56
56
  address_state: 'CA',
57
57
  address_country: 'US',
58
- address_zip: '94107'
58
+ address_zip: '94114'
59
59
  )
60
60
  ```
61
61
 
data/README.md CHANGED
@@ -44,11 +44,11 @@ addressEditable = Lob::AddressEditable.new({
44
44
  company: "Lob",
45
45
  email: "harry@lob.com",
46
46
  phone: "5555555555",
47
- address_line1: "210 King St",
48
- address_line2: "# 6100",
47
+ address_line1: "2261 Market Street",
48
+ address_line2: "Ste 5668",
49
49
  address_city: "San Francisco",
50
50
  address_state: "CA",
51
- address_zip: "94107",
51
+ address_zip: "94114",
52
52
  address_country: "US",
53
53
  });
54
54
 
@@ -17,10 +17,10 @@ RSpec.describe "UsVerificationsApi" do
17
17
  @usVerificationApi = UsVerificationsApi.new(api)
18
18
 
19
19
  @validAddress = UsVerificationsWritable.new({
20
- primary_line: "210 KING ST",
20
+ primary_line: "2261 MARKET ST",
21
21
  city: "SAN FRANCISCO",
22
22
  state: "CA",
23
- zip_code: "94107"
23
+ zip_code: "94114"
24
24
  })
25
25
  @invalidAddress = UsVerificationsWritable.new({
26
26
  primary_line: "1 CEMETERY ST",
@@ -29,10 +29,10 @@ RSpec.describe "UsVerificationsApi" do
29
29
  zip_code: "07000"
30
30
  })
31
31
  mc1 = MultipleComponents.new({
32
- primary_line: "210 KING ST",
32
+ primary_line: "2261 MARKET Street",
33
33
  city: "SAN FRANCISCO",
34
34
  state: "CA",
35
- zip_code: "94107"
35
+ zip_code: "94114"
36
36
  })
37
37
  mc2 = MultipleComponents.new({
38
38
  primary_line: "001 CEMETERY LN",
@@ -8,6 +8,12 @@
8
8
  | **dpv_cmra** | **String** | indicates whether or not the address is [CMRA-authorized](https://en.wikipedia.org/wiki/Commercial_mail_receiving_agency). Possible values are: * &#x60;Y&#x60; –– Address is CMRA-authorized. * &#x60;N&#x60; –– Address is not CMRA-authorized. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
9
9
  | **dpv_vacant** | **String** | indicates that an address was once deliverable, but has become vacant and is no longer receiving deliveries. Possible values are: * &#x60;Y&#x60; –– Address is vacant. * &#x60;N&#x60; –– Address is not vacant. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
10
10
  | **dpv_active** | **String** | Corresponds to the USPS field &#x60;dpv_no_stat&#x60;. Indicates that an address has been vacated in the recent past, and is no longer receiving deliveries. If it&#39;s been unoccupied for 90+ days, or temporarily vacant, this will be flagged. Possible values are: * &#x60;Y&#x60; –– Address is active. * &#x60;N&#x60; –– Address is not active. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
11
+ | **dpv_inactive_reason** | **String** | Indicates the reason why an address is vacant or no longer receiving deliveries. Possible values are: * &#x60;01&#x60; –– Address does not receive mail from the USPS directly, but is serviced by a drop address. * &#x60;02&#x60; –– Address not yet deliverable. * &#x60;03&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). * &#x60;04&#x60; –– Address is a College, Military Zone, or other type. * &#x60;05&#x60; –– Address no longer receives deliveries. * &#x60;06&#x60; –– Address is missing required secondary information. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made or the address is active. | |
12
+ | **dpv_throwback** | **String** | Indicates a street address for which mail is delivered to a PO Box. Possible values are: * &#x60;Y&#x60; –– Address is a PO Box throwback delivery point. * &#x60;N&#x60; –– Address is not a PO Box throwback delivery point. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
13
+ | **dpv_non_delivery_day_flag** | **String** | Indicates whether deliveries are not performed on one or more days of the week at an address. Possible values are: * &#x60;Y&#x60; –– Mail delivery does not occur on some days of the week. * &#x60;N&#x60; –– Mail delivery occurs every day of the week. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
14
+ | **dpv_non_delivery_day_values** | **String** | Indicates days of the week (starting on Sunday) deliveries are not performed at an address. For example: * &#x60;YNNNNNN&#x60; –– Mail delivery does not occur on Sunday&#39;s. * &#x60;NYNNNYN&#x60; –– Mail delivery does not occur on Monday&#39;s or Friday&#39;s. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string) or address receives mail every day of the week (&#x60;deliverability_analysis[dpv_non_delivery_day_flag]&#x60; is &#x60;N&#x60; or an empty string). | |
15
+ | **dpv_no_secure_location** | **String** | Indicates packages to this address will not be left due to security concerns. Possible values are: * &#x60;Y&#x60; –– Address does not have a secure mailbox. * &#x60;N&#x60; –– Address has a secure mailbox. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
16
+ | **dpv_door_not_accessible** | **String** | Indicates the door of the address is not accessible for mail delivery. Possible values are: * &#x60;Y&#x60; –– Door is not accessible. * &#x60;N&#x60; –– Door is accessible. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
11
17
  | **dpv_footnotes** | [**Array&lt;DpvFootnote&gt;**](DpvFootnote.md) | An array of 2-character strings that gives more insight into how &#x60;deliverability_analysis[dpv_confirmation]&#x60; was determined. Will always include at least 1 string, and can include up to 3. For details, see [US Verification Details](#tag/US-Verification-Types). | |
12
18
  | **ews_match** | **Boolean** | indicates whether or not an address has been flagged in the [Early Warning System](https://docs.informatica.com/data-engineering/data-engineering-quality/10-4-0/address-validator-port-reference/postal-carrier-certification-data-ports/early-warning-system-return-code.html), meaning the address is under development and not yet ready to receive mail. However, it should become available in a few months. | |
13
19
  | **lacs_indicator** | **String** | indicates whether this address has been converted by [LACS&lt;sup&gt;Link&lt;/sup&gt;](https://postalpro.usps.com/address-quality/lacslink). LACS&lt;sup&gt;Link&lt;/sup&gt; corrects outdated addresses into their modern counterparts. Possible values are: * &#x60;Y&#x60; –– New address produced with a matching record in LACS&lt;sup&gt;Link&lt;/sup&gt;. * &#x60;N&#x60; –– New address could not be produced with a matching record in LACS&lt;sup&gt;Link&lt;/sup&gt;. * &#x60;&#39;&#39;&#x60; –– A DPV match is not made (&#x60;deliverability_analysis[dpv_confirmation]&#x60; is &#x60;N&#x60; or an empty string). | |
@@ -20,15 +26,21 @@
20
26
  require 'openapi_client'
21
27
 
22
28
  instance = Lob::DeliverabilityAnalysis.new(
23
- dpv_confirmation: null,
24
- dpv_cmra: null,
25
- dpv_vacant: null,
26
- dpv_active: null,
27
- dpv_footnotes: null,
28
- ews_match: null,
29
- lacs_indicator: null,
30
- lacs_return_code: null,
31
- suite_return_code: null
29
+ dpv_confirmation: nil,
30
+ dpv_cmra: nil,
31
+ dpv_vacant: nil,
32
+ dpv_active: nil,
33
+ dpv_inactive_reason: nil,
34
+ dpv_throwback: nil,
35
+ dpv_non_delivery_day_flag: nil,
36
+ dpv_non_delivery_day_values: nil,
37
+ dpv_no_secure_location: nil,
38
+ dpv_door_not_accessible: nil,
39
+ dpv_footnotes: nil,
40
+ ews_match: nil,
41
+ lacs_indicator: nil,
42
+ lacs_return_code: nil,
43
+ suite_return_code: nil
32
44
  )
33
45
  ```
34
46
 
@@ -1,4 +1,4 @@
1
- # Lob::MultipleComponents
1
+ # OpenapiClient::MultipleComponents
2
2
 
3
3
  ## Properties
4
4
 
@@ -11,20 +11,22 @@
11
11
  | **city** | **String** | | [optional] |
12
12
  | **state** | **String** | The [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2:US) two letter code or subdivision name for the state. &#x60;city&#x60; and &#x60;state&#x60; are required if no &#x60;zip_code&#x60; is passed. | [optional] |
13
13
  | **zip_code** | **String** | Required if &#x60;city&#x60; and &#x60;state&#x60; are not passed in. If included, must be formatted as a US ZIP or ZIP+4 (e.g. &#x60;94107&#x60;, &#x60;941072282&#x60;, &#x60;94107-2282&#x60;). | [optional] |
14
+ | **transient_id** | **String** | ID that is returned in the response body for the verification | [optional] |
14
15
 
15
16
  ## Example
16
17
 
17
18
  ```ruby
18
19
  require 'openapi_client'
19
20
 
20
- instance = Lob::MultipleComponents.new(
21
+ instance = OpenapiClient::MultipleComponents.new(
21
22
  recipient: null,
22
23
  primary_line: null,
23
24
  secondary_line: null,
24
25
  urbanization: null,
25
26
  city: null,
26
27
  state: null,
27
- zip_code: null
28
+ zip_code: null,
29
+ transient_id: null
28
30
  )
29
31
  ```
30
32
 
data/docs/UsComponents.md CHANGED
@@ -28,6 +28,7 @@
28
28
  | **county_fips** | **String** | A 5-digit [FIPS county code](https://en.wikipedia.org/wiki/FIPS_county_code) which uniquely identifies &#x60;components[county]&#x60;. It consists of a 2-digit state code and a 3-digit county code. | |
29
29
  | **carrier_route** | **String** | A 4-character code assigned to a mail delivery route within a ZIP code. | |
30
30
  | **carrier_route_type** | **String** | The type of &#x60;components[carrier_route]&#x60;. For more detailed information about each carrier route type, see [US Verification Details](#tag/US-Verification-Types). | |
31
+ | **po_box_only_flag** | **String** | Indicates the mailing facility for an address only supports PO Box deliveries and other forms of mail delivery are not available. | |
31
32
  | **latitude** | **Float** | A positive or negative decimal indicating the geographic latitude of the address, specifying the north-to-south position of a location. This should be used with &#x60;longitude&#x60; to pinpoint locations on a map. Will not be returned for undeliverable addresses or military addresses (state is &#x60;AA&#x60;, &#x60;AE&#x60;, or &#x60;AP&#x60;). | [optional] |
32
33
  | **longitude** | **Float** | A positive or negative decimal indicating the geographic longitude of the address, specifying the north-to-south position of a location. This should be used with &#x60;latitude&#x60; to pinpoint locations on a map. Will not be returned for undeliverable addresses or military addresses (state is &#x60;AA&#x60;, &#x60;AE&#x60;, or &#x60;AP&#x60;). | [optional] |
33
34
 
@@ -37,32 +38,33 @@
37
38
  require 'openapi_client'
38
39
 
39
40
  instance = Lob::UsComponents.new(
40
- primary_number: null,
41
- street_predirection: null,
42
- street_name: null,
43
- street_suffix: null,
44
- street_postdirection: null,
45
- secondary_designator: null,
46
- secondary_number: null,
47
- pmb_designator: null,
48
- pmb_number: null,
49
- extra_secondary_designator: null,
50
- extra_secondary_number: null,
51
- city: null,
52
- state: null,
53
- zip_code: null,
54
- zip_code_plus_4: null,
55
- zip_code_type: null,
56
- delivery_point_barcode: null,
57
- address_type: null,
58
- record_type: null,
59
- default_building_address: null,
60
- county: null,
61
- county_fips: null,
62
- carrier_route: null,
63
- carrier_route_type: null,
64
- latitude: null,
65
- longitude: null
41
+ primary_number: nil,
42
+ street_predirection: nil,
43
+ street_name: nil,
44
+ street_suffix: nil,
45
+ street_postdirection: nil,
46
+ secondary_designator: nil,
47
+ secondary_number: nil,
48
+ pmb_designator: nil,
49
+ pmb_number: nil,
50
+ extra_secondary_designator: nil,
51
+ extra_secondary_number: nil,
52
+ city: nil,
53
+ state: nil,
54
+ zip_code: nil,
55
+ zip_code_plus_4: nil,
56
+ zip_code_type: nil,
57
+ delivery_point_barcode: nil,
58
+ address_type: nil,
59
+ record_type: nil,
60
+ default_building_address: nil,
61
+ county: nil,
62
+ county_fips: nil,
63
+ carrier_route: nil,
64
+ carrier_route_type: nil,
65
+ po_box_only_flag: nil,
66
+ latitude: nil,
67
+ longitude: nil
66
68
  )
67
69
  ```
68
70
 
@@ -1,4 +1,4 @@
1
- # Lob::UsVerification
1
+ # OpenapiClient::UsVerification
2
2
 
3
3
  ## Properties
4
4
 
@@ -11,17 +11,19 @@
11
11
  | **urbanization** | **String** | Only present for addresses in Puerto Rico. An urbanization refers to an area, sector, or development within a city. See [USPS documentation](https://pe.usps.com/text/pub28/28api_008.htm#:~:text&#x3D;I51.,-4%20Urbanizations&amp;text&#x3D;In%20Puerto%20Rico%2C%20identical%20street,placed%20before%20the%20urbanization%20name.) for clarification. | [optional] |
12
12
  | **last_line** | **String** | Combination of the following applicable &#x60;components&#x60;: * City (&#x60;city&#x60;) * State (&#x60;state&#x60;) * ZIP code (&#x60;zip_code&#x60;) * ZIP+4 (&#x60;zip_code_plus_4&#x60;) | [optional] |
13
13
  | **deliverability** | **String** | Summarizes the deliverability of the &#x60;us_verification&#x60; object. For full details, see the &#x60;deliverability_analysis&#x60; field. Possible values are: * &#x60;deliverable&#x60; – The address is deliverable by the USPS. * &#x60;deliverable_unnecessary_unit&#x60; – The address is deliverable, but the secondary unit information is unnecessary. * &#x60;deliverable_incorrect_unit&#x60; – The address is deliverable to the building&#39;s default address but the secondary unit provided may not exist. There is a chance the mail will not reach the intended recipient. * &#x60;deliverable_missing_unit&#x60; – The address is deliverable to the building&#39;s default address but is missing secondary unit information. There is a chance the mail will not reach the intended recipient. * &#x60;undeliverable&#x60; – The address is not deliverable according to the USPS. | [optional] |
14
+ | **valid_address** | **Boolean** | This field indicates whether an address was found in a more comprehensive address dataset that includes sources from the USPS, open source mapping data, and our proprietary mail delivery data. This field can be interpreted as a representation of whether an address is a real location or not. Additionally a valid address may contradict the deliverability field since an address can be a real valid location but the USPS may not deliver to that address. | [optional] |
14
15
  | **components** | [**UsComponents**](UsComponents.md) | | [optional] |
15
16
  | **deliverability_analysis** | [**DeliverabilityAnalysis**](DeliverabilityAnalysis.md) | | [optional] |
16
17
  | **lob_confidence_score** | [**LobConfidenceScore**](LobConfidenceScore.md) | | [optional] |
17
18
  | **object** | **String** | | [optional][default to &#39;us_verification&#39;] |
19
+ | **transient_id** | **String** | ID that is returned in the response body for the verification | [optional] |
18
20
 
19
21
  ## Example
20
22
 
21
23
  ```ruby
22
24
  require 'openapi_client'
23
25
 
24
- instance = Lob::UsVerification.new(
26
+ instance = OpenapiClient::UsVerification.new(
25
27
  id: null,
26
28
  recipient: null,
27
29
  primary_line: null,
@@ -29,10 +31,12 @@ instance = Lob::UsVerification.new(
29
31
  urbanization: null,
30
32
  last_line: null,
31
33
  deliverability: null,
34
+ valid_address: null,
32
35
  components: null,
33
36
  deliverability_analysis: null,
34
37
  lob_confidence_score: null,
35
- object: null
38
+ object: null,
39
+ transient_id: null
36
40
  )
37
41
  ```
38
42
 
@@ -1,4 +1,4 @@
1
- # Lob::UsVerificationOrError
1
+ # OpenapiClient::UsVerificationOrError
2
2
 
3
3
  ## Properties
4
4
 
@@ -15,6 +15,7 @@
15
15
  | **deliverability_analysis** | [**DeliverabilityAnalysis**](DeliverabilityAnalysis.md) | | [optional] |
16
16
  | **lob_confidence_score** | [**LobConfidenceScore**](LobConfidenceScore.md) | | [optional] |
17
17
  | **object** | **String** | | [optional][default to &#39;us_verification&#39;] |
18
+ | **transient_id** | **String** | ID that is returned in the response body for the verification | [optional] |
18
19
  | **error** | [**BulkError**](BulkError.md) | | [optional] |
19
20
 
20
21
  ## Example
@@ -22,7 +23,7 @@
22
23
  ```ruby
23
24
  require 'openapi_client'
24
25
 
25
- instance = Lob::UsVerificationOrError.new(
26
+ instance = OpenapiClient::UsVerificationOrError.new(
26
27
  id: null,
27
28
  recipient: null,
28
29
  primary_line: null,
@@ -34,6 +35,7 @@ instance = Lob::UsVerificationOrError.new(
34
35
  deliverability_analysis: null,
35
36
  lob_confidence_score: null,
36
37
  object: null,
38
+ transient_id: null,
37
39
  error: null
38
40
  )
39
41
  ```
@@ -1,4 +1,4 @@
1
- # Lob::UsVerifications
1
+ # OpenapiClient::UsVerifications
2
2
 
3
3
  ## Properties
4
4
 
@@ -12,7 +12,7 @@
12
12
  ```ruby
13
13
  require 'openapi_client'
14
14
 
15
- instance = Lob::UsVerifications.new(
15
+ instance = OpenapiClient::UsVerifications.new(
16
16
  addresses: null,
17
17
  errors: null
18
18
  )
@@ -1,10 +1,10 @@
1
- # Lob::UsVerificationsWritable
1
+ # OpenapiClient::UsVerificationsWritable
2
2
 
3
3
  ## Properties
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **address** | **String** | The entire address in one string (e.g., \&quot;210 King Street 94107\&quot;). _Does not support a recipient and will error when other payload parameters are provided._ | [optional] |
7
+ | **address** | **String** | The entire address in one string (e.g., \&quot;2261 Market Street 94114\&quot;). _Does not support a recipient and will error when other payload parameters are provided._ | [optional] |
8
8
  | **recipient** | **String** | The intended recipient, typically a person&#39;s or firm&#39;s name. | [optional] |
9
9
  | **primary_line** | **String** | The primary delivery line (usually the street address) of the address. Combination of the following applicable &#x60;components&#x60;: * &#x60;primary_number&#x60; * &#x60;street_predirection&#x60; * &#x60;street_name&#x60; * &#x60;street_suffix&#x60; * &#x60;street_postdirection&#x60; * &#x60;secondary_designator&#x60; * &#x60;secondary_number&#x60; * &#x60;pmb_designator&#x60; * &#x60;pmb_number&#x60; | [optional] |
10
10
  | **secondary_line** | **String** | The secondary delivery line of the address. This field is typically empty but may contain information if &#x60;primary_line&#x60; is too long. | [optional] |
@@ -12,13 +12,14 @@
12
12
  | **city** | **String** | | [optional] |
13
13
  | **state** | **String** | The [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2:US) two letter code or subdivision name for the state. &#x60;city&#x60; and &#x60;state&#x60; are required if no &#x60;zip_code&#x60; is passed. | [optional] |
14
14
  | **zip_code** | **String** | Required if &#x60;city&#x60; and &#x60;state&#x60; are not passed in. If included, must be formatted as a US ZIP or ZIP+4 (e.g. &#x60;94107&#x60;, &#x60;941072282&#x60;, &#x60;94107-2282&#x60;). | [optional] |
15
+ | **transient_id** | **String** | ID that is returned in the response body for the verification | [optional] |
15
16
 
16
17
  ## Example
17
18
 
18
19
  ```ruby
19
20
  require 'openapi_client'
20
21
 
21
- instance = Lob::UsVerificationsWritable.new(
22
+ instance = OpenapiClient::UsVerificationsWritable.new(
22
23
  address: null,
23
24
  recipient: null,
24
25
  primary_line: null,
@@ -26,7 +27,8 @@ instance = Lob::UsVerificationsWritable.new(
26
27
  urbanization: null,
27
28
  city: null,
28
29
  state: null,
29
- zip_code: null
30
+ zip_code: null,
31
+ transient_id: null
30
32
  )
31
33
  ```
32
34