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

com.smartystreets.api.us_reverse_geo.Lookup 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 Lookup implements Serializable {

    //region [ Fields ]

    private double latitude;
    private double longitude;
    private String source;

    private SmartyResponse response;

    //endregion

    public Lookup() { this.response = new SmartyResponse(); }

    public Lookup(double latitude, double longitude) {
        this();
        this.latitude = latitude;
        this.longitude = longitude;
    }

    public Double getLatitude() { return this.latitude; }

    public Double getLongitude() { return this.longitude; }

    public String getSource() { return this.source; }

    public void setSource(String source) { this.source = source; }

    public SmartyResponse getResponse() { return this.response; }

    public void setResponse(SmartyResponse response) {
        this.response = response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy