com.what3words.javawrapper.response.Autosuggest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of w3w-java-wrapper Show documentation
Show all versions of w3w-java-wrapper Show documentation
Java library for what3words REST API.
package com.what3words.javawrapper.response;
import java.util.List;
import com.google.gson.GsonBuilder;
public class Autosuggest extends Response {
private List suggestions = null;
public List getSuggestions() {
return suggestions;
}
public void setSuggestions(List suggestions) {
this.suggestions = suggestions;
}
public String toString() {
return new GsonBuilder().setPrettyPrinting().create().toJson(this);
}
}