com.what3words.javawrapper.response.Square 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 Square {
private Coordinates southwest;
private Coordinates northeast;
public Coordinates getSouthwest() {
return southwest;
}
public Coordinates getNortheast() {
return northeast;
}
}