Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Whatsapp API latitude and longitude field names #547

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
# [8.12.0] - 2024-10-??
- Added `network_apis` capability to Application API
- Added `@JsonCreator` annotation to webhook classes' `fromJson(String)` method
- Fixed Whatsapp API `latitude` and `longitude` field names

# [8.11.0] - 2024-09-25
- Added custom user agent property setting to `HttpConfig`
Expand Down Expand Up @@ -758,4 +759,4 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Add support for nexmo SNS service
- Ams submission - report comms-failure as an error response, not as an exception
- Ams submission - add support for 'remainingBalance' in the api response
- Ams submission - add support for 'remainingBalance' in the api response
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ documentation, or tests are eligible to be added to this list.
- Ilya Golovin ([@ilgo0413](https://github.com/ilgo0413))
- Joakim Waltersson ([@jwalter](https://github.com/jwalter))
- Mofi Rahman ([@moficodes](https://github.com/moficodes))
- Sina Madani ([@SMadani](https://github.com/SMadani))
- Sina Madani ([@SMadani](https://github.com/SMadani))
- Jeremy Chan ([@jeremychan](https://github.com/jeremychan))
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ public final class Location extends JsonableBaseObject {
address = builder.address;
}

@JsonProperty("lat")
@JsonProperty("latitude")
public double getLatitude() {
return latitude;
}

@JsonProperty("long")
@JsonProperty("longitude")
public double getLongitude() {
return longitude;
}
Expand Down
Loading