com.mailchimp.domain.Location Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailchimp-java Show documentation
Show all versions of mailchimp-java Show documentation
Java client to communicate with MailChimp API 3.0
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