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

com.mailchimp.domain.Location Maven / Gradle / Ivy

The newest version!
package com.mailchimp.domain;

import com.fasterxml.jackson.annotation.JsonProperty;

import lombok.Data;

/**
 * @author Micheal Swiggs
 */
@Data
public class Location {

    @JsonProperty
    private Double latitude;

    @JsonProperty
    private Double longtitude;

    @JsonProperty
    private Double gmtoff;

    @JsonProperty
    private Double dstoff;

    @JsonProperty("country_code")
    private String countryCode;

    @JsonProperty
    private String timezone;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy