com.what3words.javawrapper.response.Suggestion 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;
public class Suggestion {
private String country;
private String nearestPlace;
private String words;
private int distanceToFocusKm;
private int rank;
private String language;
public String getCountry() {
return country;
}
public String getNearestPlace() {
return nearestPlace;
}
public String getWords() {
return words;
}
public int getDistanceToFocusKm() {
return distanceToFocusKm;
}
public int getRank() {
return rank;
}
public String getLanguage() {
return language;
}
}