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

com.adyen.model.nexo.GeographicCoordinates Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

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


/**
 * Definition: Location on the Earth specified by two numbers representing vertical and horizontal position. -- Usage: Identifies the geographic location of a mobile phone.
 *
 * 

Java class for GeographicCoordinates complex type. * *

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy