com.adyen.model.nexo.UTMCoordinates Maven / Gradle / Ivy
package com.adyen.model.nexo;
import io.swagger.v3.oas.annotations.media.Schema;
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 the Universal Transverse Mercator coordinate system. -- Usage: Identifies the geographic location of a mobile phone by GPS using the WGS84 ellipsoid spatial reference system.
*
* Java class for UTMCoordinates complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UTMCoordinates">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="UTMZone" type="{}UTMZone"/>
* <element name="UTMEastward" type="{}UTMEastward"/>
* <element name="UTMNorthward" type="{}UTMNorthward"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UTMCoordinates", propOrder = {
"utmZone",
"utmEastward",
"utmNorthward"
})
public class UTMCoordinates {
/**
* The Utm zone.
*/
@XmlElement(name = "UTMZone", required = true)
@Schema(description = "UTM grid zone combination of the longitude zone (1 to 60) and the latitude band (C to X, excluding I and O).")
protected String utmZone;
/**
* The Utm eastward.
*/
@XmlElement(name = "UTMEastward", required = true)
@Schema(description = "X-coordinate of the Universal Transverse Mercator coordinate system.")
protected String utmEastward;
/**
* The Utm northward.
*/
@XmlElement(name = "UTMNorthward", required = true)
@Schema(description = "Y-coordinate of the Universal Transverse Mercator coordinate system.")
protected String utmNorthward;
/**
* Gets the value of the utmZone property.
*
* @return possible object is {@link String }
*/
public String getUTMZone() {
return utmZone;
}
/**
* Sets the value of the utmZone property.
*
* @param value allowed object is {@link String }
*/
public void setUTMZone(String value) {
this.utmZone = value;
}
/**
* Gets the value of the utmEastward property.
*
* @return possible object is {@link String }
*/
public String getUTMEastward() {
return utmEastward;
}
/**
* Sets the value of the utmEastward property.
*
* @param value allowed object is {@link String }
*/
public void setUTMEastward(String value) {
this.utmEastward = value;
}
/**
* Gets the value of the utmNorthward property.
*
* @return possible object is {@link String }
*/
public String getUTMNorthward() {
return utmNorthward;
}
/**
* Sets the value of the utmNorthward property.
*
* @param value allowed object is {@link String }
*/
public void setUTMNorthward(String value) {
this.utmNorthward = value;
}
}