Added google status field to troubleshoot weird responses (f.e.
exceeding limit :)).master
parent
306c6c0f68
commit
8363298dc7
|
@ -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 + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue