|
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;
|
|
|
/**
|
* Status.
|
*
|
* <p>Clase Java para CheckSkpStatusResponse complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="CheckSkpStatusResponse">
|
* <complexContent>
|
* <extension base="{http://traxelektronik.pl/trax/ws/protocol}HeaderResponse">
|
* <sequence>
|
* <element name="skpStatus" type="{http://traxelektronik.pl/trax/ws/protocol}SkpStatus"/>
|
* </sequence>
|
* </extension>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "CheckSkpStatusResponse", propOrder = {
|
"skpStatus"
|
})
|
public class CheckSkpStatusResponse
|
extends HeaderResponse
|
{
|
|
@XmlElement(required = true)
|
protected SkpStatus skpStatus;
|
|
/**
|
* Obtiene el valor de la propiedad skpStatus.
|
*
|
* @return
|
* possible object is
|
* {@link SkpStatus }
|
*
|
*/
|
public SkpStatus getSkpStatus() {
|
return skpStatus;
|
}
|
|
/**
|
* Define el valor de la propiedad skpStatus.
|
*
|
* @param value
|
* allowed object is
|
* {@link SkpStatus }
|
*
|
*/
|
public void setSkpStatus(SkpStatus value) {
|
this.skpStatus = value;
|
}
|
|
}
|