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")
private String nextPageToken;
private List<GooglePlaceResult> results;
private String status;
public List<String> 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 + '\'' +
'}';
}
}