Added google status field to troubleshoot weird responses (f.e.

exceeding limit :)).
master
Tomasz Półgrabia 2016-10-04 22:28:19 +02:00
parent 306c6c0f68
commit 8363298dc7
1 changed files with 11 additions and 1 deletions

View File

@ -13,6 +13,7 @@ public class GooglePlaceResponse {
@SerializedName("next_page_token") @SerializedName("next_page_token")
private String nextPageToken; private String nextPageToken;
private List<GooglePlaceResult> results; private List<GooglePlaceResult> results;
private String status;
public List<String> getHtmlAttributions() { public List<String> getHtmlAttributions() {
return htmlAttributions; return htmlAttributions;
@ -38,12 +39,21 @@ public class GooglePlaceResponse {
this.results = results; this.results = results;
} }
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@Override @Override
public String toString() { public String toString() {
return "GooglePlaceResponse{" + return "GooglePlaceResponse{" +
"htmlAttributions=" + htmlAttributions + "htmlAttributions=" + htmlAttributions +
", nextPageToken='" + nextPageToken + '\'' + ", nextPageToken='" + nextPageToken + '\'' +
", results='" + results + '\'' + ", results=" + results +
", status='" + status + '\'' +
'}'; '}';
} }
} }