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

com.easypost.model.AddressDetail Maven / Gradle / Ivy

The newest version!
package com.easypost.model;

public final class AddressDetail {
    private Float latitude;
    private Float longitude;
    private String timeZone;

    /**
     * Get latitude of the address.
     *
     * @return latitude of the address.
     */
    public Float getLatitude() {
        return latitude;
    }

    /**
     * Set latitude of the address.
     *
     * @param latitude latitude of the address.
     */
    public void setLatitude(final Float latitude) {
        this.latitude = latitude;
    }

    /**
     * Get longitude of the address.
     *
     * @return longitude of the address.
     */
    public Float getLongitude() {
        return longitude;
    }

    /**
     * Set longitude of the address.
     *
     * @param longitude longitude of the address.
     */
    public void setLongitude(final Float longitude) {
        this.longitude = longitude;
    }

    /**
     * Get time zone of the address.
     *
     * @return time zone of the address.
     */
    public String getTimeZone() {
        return timeZone;
    }

    /**
     * Set time zone of the address.
     *
     * @param timeZone time zone of the address.
     */
    public void setCode(final String timeZone) {
        this.timeZone = timeZone;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy