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

com.smartystreets.api.us_reverse_geo.Result Maven / Gradle / Ivy

There is a newer version: 3.18.3
Show newest version
package com.smartystreets.api.us_reverse_geo;

import java.io.Serializable;

public class Result implements Serializable {
    //region [ Fields ]

    private Address address;
    private Coordinate coordinate;
    private double distance;

    //endregion

    public Address getAddress() {
        return this.address;
    }

    public Coordinate getCoordinate() { return this.coordinate; }

    public Double getDistance() { return this.distance; }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy