Skip to content

Commit

Permalink
Added new administrative area fields in international autocomplete.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Amundson committed Jul 2, 2024
1 parent 5703c64 commit 74a70ca
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ def __init__(self, obj=None):
self.street = obj.get('street', None)
self.locality = obj.get('locality', None)
self.administrative_area = obj.get('administrative_area', None)
self.administrative_area_short = obj.get('administrative_area_short', None)
self.administrative_area_long = obj.get('administrative_area_long', None)
self.postal_code = obj.get('postal_code', None)
self.country_iso3 = obj.get('country_iso3', None)
# v2 fields
Expand Down

0 comments on commit 74a70ca

Please sign in to comment.