package echosign.api.clientv20.dto16; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for DeviceLocation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DeviceLocation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/> * <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceLocation", propOrder = { "latitude", "longitude" }) public class DeviceLocation { @XmlElement(nillable = true) protected Float latitude; @XmlElement(nillable = true) protected Float longitude; /** * Gets the value of the latitude property. * * @return * possible object is * {@link Float } * */ public Float getLatitude() { return latitude; } /** * Sets the value of the latitude property. * * @param value * allowed object is * {@link Float } * */ public void setLatitude(Float value) { this.latitude = value; } /** * Gets the value of the longitude property. * * @return * possible object is * {@link Float } * */ public Float getLongitude() { return longitude; } /** * Sets the value of the longitude property. * * @param value * allowed object is * {@link Float } * */ public void setLongitude(Float value) { this.longitude = value; } }