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

com.sforce.soap.partner.Location Maven / Gradle / Ivy


package com.sforce.soap.partner;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for location complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="location">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "location", propOrder = { "latitude", "longitude" }) @XmlSeeAlso({ Address.class }) public class Location { @XmlElement(required = true, type = Double.class, nillable = true) protected Double latitude; @XmlElement(required = true, type = Double.class, nillable = true) protected Double longitude; /** * Gets the value of the latitude property. * * @return * possible object is * {@link Double } * */ public Double getLatitude() { return latitude; } /** * Sets the value of the latitude property. * * @param value * allowed object is * {@link Double } * */ public void setLatitude(Double value) { this.latitude = value; } /** * Gets the value of the longitude property. * * @return * possible object is * {@link Double } * */ public Double getLongitude() { return longitude; } /** * Sets the value of the longitude property. * * @param value * allowed object is * {@link Double } * */ public void setLongitude(Double value) { this.longitude = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy