![JAR search and dependency download from the Maven repository](/logo.png)
com.omgm.speedy.eps.soap.model.CreateOrder 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 createOrder complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="createOrder">
* <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="order" type="{http://ver01.eps.speedy.sirma.com/}paramOrder" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "createOrder", propOrder = {
"sessionId",
"order"
})
public class CreateOrder {
protected String sessionId;
protected ParamOrder order;
/**
* 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 order property.
*
* @return
* possible object is
* {@link ParamOrder }
*
*/
public ParamOrder getOrder() {
return order;
}
/**
* Sets the value of the order property.
*
* @param value
* allowed object is
* {@link ParamOrder }
*
*/
public void setOrder(ParamOrder value) {
this.order = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy