Package com.adyen.model.nexo
Class Geolocation
- java.lang.Object
-
- com.adyen.model.nexo.Geolocation
-
public class Geolocation extends Object
Definition: Geographic location specified by geographic or UTM coordinates. -- Usage: Identifies the geographic location of a mobile phone.Java class for Geolocation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Geolocation"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="GeographicCoordinates" type="{}GeographicCoordinates" minOccurs="0"/> <element name="UTMCoordinates" type="{}UTMCoordinates" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected GeographicCoordinatesgeographicCoordinatesThe Geographic coordinates.protected UTMCoordinatesutmCoordinatesThe Utm coordinates.
-
Constructor Summary
Constructors Constructor Description Geolocation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GeographicCoordinatesgetGeographicCoordinates()Gets the value of the geographicCoordinates property.UTMCoordinatesgetUTMCoordinates()Gets the value of the utmCoordinates property.voidsetGeographicCoordinates(GeographicCoordinates value)Sets the value of the geographicCoordinates property.voidsetUTMCoordinates(UTMCoordinates value)Sets the value of the utmCoordinates property.
-
-
-
Field Detail
-
geographicCoordinates
protected GeographicCoordinates geographicCoordinates
The Geographic coordinates.
-
utmCoordinates
protected UTMCoordinates utmCoordinates
The Utm coordinates.
-
-
Method Detail
-
getGeographicCoordinates
public GeographicCoordinates getGeographicCoordinates()
Gets the value of the geographicCoordinates property.- Returns:
- possible object is
GeographicCoordinates
-
setGeographicCoordinates
public void setGeographicCoordinates(GeographicCoordinates value)
Sets the value of the geographicCoordinates property.- Parameters:
value- allowed object isGeographicCoordinates
-
getUTMCoordinates
public UTMCoordinates getUTMCoordinates()
Gets the value of the utmCoordinates property.- Returns:
- possible object is
UTMCoordinates
-
setUTMCoordinates
public void setUTMCoordinates(UTMCoordinates value)
Sets the value of the utmCoordinates property.- Parameters:
value- allowed object isUTMCoordinates
-
-