All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.what3words.javawrapper.response.Autosuggest Maven / Gradle / Ivy

The newest version!
package com.what3words.javawrapper.response;

import java.util.List;

import com.google.gson.GsonBuilder;

public class Autosuggest extends Response {
    private List suggestions = null;

    public Autosuggest() {

    }

    public Autosuggest(List suggestions) {
        this.suggestions = suggestions;
    }

    public List getSuggestions() {
        return suggestions;
    }

    @Deprecated
    public void setSuggestions(List suggestions) {
        this.suggestions = suggestions;
    }

    public String toString() {
        return new GsonBuilder().setPrettyPrinting().create().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy