Package com.adyen.model.nexo
Class GeographicCoordinates
- java.lang.Object
-
- com.adyen.model.nexo.GeographicCoordinates
-
public class GeographicCoordinates extends Object
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>
-
-
Constructor Summary
Constructors Constructor Description GeographicCoordinates()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLatitude()Gets the value of the latitude property.StringgetLongitude()Gets the value of the longitude property.voidsetLatitude(String value)Sets the value of the latitude property.voidsetLongitude(String value)Sets the value of the longitude property.
-
-
-
Method Detail
-
getLatitude
public String getLatitude()
Gets the value of the latitude property.- Returns:
- possible object is
String
-
setLatitude
public void setLatitude(String value)
Sets the value of the latitude property.- Parameters:
value- allowed object isString
-
getLongitude
public String getLongitude()
Gets the value of the longitude property.- Returns:
- possible object is
String
-
-