|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlType;
|
|
|
/**
|
* Current measurements.
|
*
|
* <p>Clase Java para CheckSkpDataResponse complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="CheckSkpDataResponse">
|
* <complexContent>
|
* <extension base="{http://traxelektronik.pl/trax/ws/protocol}HeaderResponse">
|
* <sequence>
|
* <element name="skpData" type="{http://traxelektronik.pl/trax/ws/protocol}SkpData"/>
|
* </sequence>
|
* </extension>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "CheckSkpDataResponse", propOrder = {
|
"skpData"
|
})
|
public class CheckSkpDataResponse
|
extends HeaderResponse
|
{
|
|
@XmlElement(required = true)
|
protected SkpData skpData;
|
|
/**
|
* Obtiene el valor de la propiedad skpData.
|
*
|
* @return
|
* possible object is
|
* {@link SkpData }
|
*
|
*/
|
public SkpData getSkpData() {
|
return skpData;
|
}
|
|
/**
|
* Define el valor de la propiedad skpData.
|
*
|
* @param value
|
* allowed object is
|
* {@link SkpData }
|
*
|
*/
|
public void setSkpData(SkpData value) {
|
this.skpData = value;
|
}
|
|
}
|