com.omgm.speedy.eps.soap.model.FinalizeBillOfLadingCreation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of speedy-eps-java-client-soap Show documentation
Show all versions of speedy-eps-java-client-soap Show documentation
Speedy EPS SOAP java client library, examples and recommendations
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 finalizeBillOfLadingCreation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="finalizeBillOfLadingCreation">
* <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="billOfLading" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "finalizeBillOfLadingCreation", propOrder = {
"sessionId",
"billOfLading"
})
public class FinalizeBillOfLadingCreation {
protected String sessionId;
protected long billOfLading;
/**
* 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 billOfLading property.
*
*/
public long getBillOfLading() {
return billOfLading;
}
/**
* Sets the value of the billOfLading property.
*
*/
public void setBillOfLading(long value) {
this.billOfLading = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy