@@ -113,12 +113,24 @@ def __init__(
113113
114114 @cached_property
115115 def address_verification (self ) -> AddressVerificationResource :
116+ """Standard Address Verification API.
117+
118+ Provides endpoints to verify and standardize addresses across US and Canada,
119+ supporting both structured and freeform inputs.
120+
121+ Note that this uses a different set of lookups than our international API.
122+ """
116123 from .resources .address_verification import AddressVerificationResource
117124
118125 return AddressVerificationResource (self )
119126
120127 @cached_property
121128 def intl_address_verification (self ) -> IntlAddressVerificationResource :
129+ """International Address Verification API.
130+
131+ Provides endpoints to verify and standardize international addresses,
132+ supporting both structured and freeform inputs.
133+ """
122134 from .resources .intl_address_verification import IntlAddressVerificationResource
123135
124136 return IntlAddressVerificationResource (self )
@@ -341,12 +353,24 @@ def __init__(
341353
342354 @cached_property
343355 def address_verification (self ) -> AsyncAddressVerificationResource :
356+ """Standard Address Verification API.
357+
358+ Provides endpoints to verify and standardize addresses across US and Canada,
359+ supporting both structured and freeform inputs.
360+
361+ Note that this uses a different set of lookups than our international API.
362+ """
344363 from .resources .address_verification import AsyncAddressVerificationResource
345364
346365 return AsyncAddressVerificationResource (self )
347366
348367 @cached_property
349368 def intl_address_verification (self ) -> AsyncIntlAddressVerificationResource :
369+ """International Address Verification API.
370+
371+ Provides endpoints to verify and standardize international addresses,
372+ supporting both structured and freeform inputs.
373+ """
350374 from .resources .intl_address_verification import AsyncIntlAddressVerificationResource
351375
352376 return AsyncIntlAddressVerificationResource (self )
@@ -516,12 +540,24 @@ def __init__(self, client: PostGrid) -> None:
516540
517541 @cached_property
518542 def address_verification (self ) -> address_verification .AddressVerificationResourceWithRawResponse :
543+ """Standard Address Verification API.
544+
545+ Provides endpoints to verify and standardize addresses across US and Canada,
546+ supporting both structured and freeform inputs.
547+
548+ Note that this uses a different set of lookups than our international API.
549+ """
519550 from .resources .address_verification import AddressVerificationResourceWithRawResponse
520551
521552 return AddressVerificationResourceWithRawResponse (self ._client .address_verification )
522553
523554 @cached_property
524555 def intl_address_verification (self ) -> intl_address_verification .IntlAddressVerificationResourceWithRawResponse :
556+ """International Address Verification API.
557+
558+ Provides endpoints to verify and standardize international addresses,
559+ supporting both structured and freeform inputs.
560+ """
525561 from .resources .intl_address_verification import IntlAddressVerificationResourceWithRawResponse
526562
527563 return IntlAddressVerificationResourceWithRawResponse (self ._client .intl_address_verification )
@@ -541,6 +577,13 @@ def __init__(self, client: AsyncPostGrid) -> None:
541577
542578 @cached_property
543579 def address_verification (self ) -> address_verification .AsyncAddressVerificationResourceWithRawResponse :
580+ """Standard Address Verification API.
581+
582+ Provides endpoints to verify and standardize addresses across US and Canada,
583+ supporting both structured and freeform inputs.
584+
585+ Note that this uses a different set of lookups than our international API.
586+ """
544587 from .resources .address_verification import AsyncAddressVerificationResourceWithRawResponse
545588
546589 return AsyncAddressVerificationResourceWithRawResponse (self ._client .address_verification )
@@ -549,6 +592,11 @@ def address_verification(self) -> address_verification.AsyncAddressVerificationR
549592 def intl_address_verification (
550593 self ,
551594 ) -> intl_address_verification .AsyncIntlAddressVerificationResourceWithRawResponse :
595+ """International Address Verification API.
596+
597+ Provides endpoints to verify and standardize international addresses,
598+ supporting both structured and freeform inputs.
599+ """
552600 from .resources .intl_address_verification import AsyncIntlAddressVerificationResourceWithRawResponse
553601
554602 return AsyncIntlAddressVerificationResourceWithRawResponse (self ._client .intl_address_verification )
@@ -568,6 +616,13 @@ def __init__(self, client: PostGrid) -> None:
568616
569617 @cached_property
570618 def address_verification (self ) -> address_verification .AddressVerificationResourceWithStreamingResponse :
619+ """Standard Address Verification API.
620+
621+ Provides endpoints to verify and standardize addresses across US and Canada,
622+ supporting both structured and freeform inputs.
623+
624+ Note that this uses a different set of lookups than our international API.
625+ """
571626 from .resources .address_verification import AddressVerificationResourceWithStreamingResponse
572627
573628 return AddressVerificationResourceWithStreamingResponse (self ._client .address_verification )
@@ -576,6 +631,11 @@ def address_verification(self) -> address_verification.AddressVerificationResour
576631 def intl_address_verification (
577632 self ,
578633 ) -> intl_address_verification .IntlAddressVerificationResourceWithStreamingResponse :
634+ """International Address Verification API.
635+
636+ Provides endpoints to verify and standardize international addresses,
637+ supporting both structured and freeform inputs.
638+ """
579639 from .resources .intl_address_verification import IntlAddressVerificationResourceWithStreamingResponse
580640
581641 return IntlAddressVerificationResourceWithStreamingResponse (self ._client .intl_address_verification )
@@ -595,6 +655,13 @@ def __init__(self, client: AsyncPostGrid) -> None:
595655
596656 @cached_property
597657 def address_verification (self ) -> address_verification .AsyncAddressVerificationResourceWithStreamingResponse :
658+ """Standard Address Verification API.
659+
660+ Provides endpoints to verify and standardize addresses across US and Canada,
661+ supporting both structured and freeform inputs.
662+
663+ Note that this uses a different set of lookups than our international API.
664+ """
598665 from .resources .address_verification import AsyncAddressVerificationResourceWithStreamingResponse
599666
600667 return AsyncAddressVerificationResourceWithStreamingResponse (self ._client .address_verification )
@@ -603,6 +670,11 @@ def address_verification(self) -> address_verification.AsyncAddressVerificationR
603670 def intl_address_verification (
604671 self ,
605672 ) -> intl_address_verification .AsyncIntlAddressVerificationResourceWithStreamingResponse :
673+ """International Address Verification API.
674+
675+ Provides endpoints to verify and standardize international addresses,
676+ supporting both structured and freeform inputs.
677+ """
606678 from .resources .intl_address_verification import AsyncIntlAddressVerificationResourceWithStreamingResponse
607679
608680 return AsyncIntlAddressVerificationResourceWithStreamingResponse (self ._client .intl_address_verification )
0 commit comments