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

com.omgm.speedy.eps.soap.model.GetMicroregionId Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

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


/**
 * 

Java class for getMicroregionId complex type. * *

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

 * <complexType name="getMicroregionId">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="coordX" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="coordY" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getMicroregionId", propOrder = { "sessionId", "coordX", "coordY" }) public class GetMicroregionId { protected String sessionId; protected double coordX; protected double coordY; /** * Gets the value of the sessionId property. * * @return * possible object is * {@link String } * */ public String getSessionId() { return sessionId; } /** * Sets the value of the sessionId property. * * @param value * allowed object is * {@link String } * */ public void setSessionId(String value) { this.sessionId = value; } /** * Gets the value of the coordX property. * */ public double getCoordX() { return coordX; } /** * Sets the value of the coordX property. * */ public void setCoordX(double value) { this.coordX = value; } /** * Gets the value of the coordY property. * */ public double getCoordY() { return coordY; } /** * Sets the value of the coordY property. * */ public void setCoordY(double value) { this.coordY = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy