-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from smartystreets/iac-v2
Support intl autocomplete v2
- Loading branch information
Showing
7 changed files
with
69 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
package international_autocomplete_api | ||
|
||
type Candidate struct { | ||
Street string `json:"street"` | ||
Locality string `json:"locality"` | ||
AdministrativeArea string `json:"administrative_area"` | ||
SuperAdministrativeArea string `json:"super_administrative_area"` | ||
SubAdministrativeArea string `json:"sub_administrative_area"` | ||
PostalCode string `json:"postal_code"` | ||
CountryIso3 string `json:"country_iso3"` | ||
Street string `json:"street"` | ||
Locality string `json:"locality"` | ||
AdministrativeArea string `json:"administrative_area"` | ||
PostalCode string `json:"postal_code"` | ||
CountryIso3 string `json:"country_iso3"` | ||
|
||
Entries int `json:"entries"` | ||
AddressText string `json:"address_text"` | ||
AddressID string `json:"address_id"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters