From 8363298dc773acbac587fa0e579edf8c92547c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Tue, 4 Oct 2016 22:28:19 +0200 Subject: [PATCH] Added google status field to troubleshoot weird responses (f.e. exceeding limit :)). --- .../googleutils/dto/GooglePlaceResponse.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/googleutils/src/main/java/pl/tpolgrabia/googleutils/dto/GooglePlaceResponse.java b/googleutils/src/main/java/pl/tpolgrabia/googleutils/dto/GooglePlaceResponse.java index da402d4..2fddf1e 100644 --- a/googleutils/src/main/java/pl/tpolgrabia/googleutils/dto/GooglePlaceResponse.java +++ b/googleutils/src/main/java/pl/tpolgrabia/googleutils/dto/GooglePlaceResponse.java @@ -13,6 +13,7 @@ public class GooglePlaceResponse { @SerializedName("next_page_token") private String nextPageToken; private List results; + private String status; public List getHtmlAttributions() { return htmlAttributions; @@ -38,12 +39,21 @@ public class GooglePlaceResponse { this.results = results; } + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + @Override public String toString() { return "GooglePlaceResponse{" + "htmlAttributions=" + htmlAttributions + ", nextPageToken='" + nextPageToken + '\'' + - ", results='" + results + '\'' + + ", results=" + results + + ", status='" + status + '\'' + '}'; } }