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

com.adyen.model.nexo.Geolocation 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: 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>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Geolocation", propOrder = { "geographicCoordinates", "utmCoordinates" }) public class Geolocation { /** * The Geographic coordinates. */ @XmlElement(name = "GeographicCoordinates") protected GeographicCoordinates geographicCoordinates; /** * The Utm coordinates. */ @XmlElement(name = "UTMCoordinates") protected UTMCoordinates utmCoordinates; /** * Gets the value of the geographicCoordinates property. * * @return possible object is {@link GeographicCoordinates } */ public GeographicCoordinates getGeographicCoordinates() { return geographicCoordinates; } /** * Sets the value of the geographicCoordinates property. * * @param value allowed object is {@link GeographicCoordinates } */ public void setGeographicCoordinates(GeographicCoordinates value) { this.geographicCoordinates = value; } /** * Gets the value of the utmCoordinates property. * * @return possible object is {@link UTMCoordinates } */ public UTMCoordinates getUTMCoordinates() { return utmCoordinates; } /** * Sets the value of the utmCoordinates property. * * @param value allowed object is {@link UTMCoordinates } */ public void setUTMCoordinates(UTMCoordinates value) { this.utmCoordinates = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy