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 + '\'' + '}'; } }