/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.location; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Properties of the geographical coordinates associated with a specific location. */ @JsonIgnoreProperties(ignoreUnknown = true) public class Coordinates implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The latitude coordinate of the location. */ protected double lat; public double getLat() { return this.lat; } public void setLat(double lat) { this.lat = lat; } /** * The longitude coordinate of the location. */ protected double lng; public double getLng() { return this.lng; } public void setLng(double lng) { this.lng = lng; } }