com.what3words.javawrapper.response.GridSection 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 GridSection extends Response {
private List lines = null;
public List getLines() {
return lines;
}
public String toString() {
return new GsonBuilder().setPrettyPrinting().create().toJson(this);
}
}