package com.sitewhere.assetmodule.magento.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for salesOrderShipmentEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="salesOrderShipmentEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="increment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="parent_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="store_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="updated_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="is_active" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="shipping_address_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="shipping_firstname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="shipping_lastname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="order_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="order_increment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="order_created_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="total_qty" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="shipment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="items" type="{urn:Magento}salesOrderShipmentItemEntityArray" minOccurs="0"/>
* <element name="tracks" type="{urn:Magento}salesOrderShipmentTrackEntityArray" minOccurs="0"/>
* <element name="comments" type="{urn:Magento}salesOrderShipmentCommentEntityArray" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "salesOrderShipmentEntity", propOrder = {
"incrementId",
"parentId",
"storeId",
"createdAt",
"updatedAt",
"isActive",
"shippingAddressId",
"shippingFirstname",
"shippingLastname",
"orderId",
"orderIncrementId",
"orderCreatedAt",
"totalQty",
"shipmentId",
"items",
"tracks",
"comments"
})
public class SalesOrderShipmentEntity {
@XmlElement(name = "increment_id")
protected String incrementId;
@XmlElement(name = "parent_id")
protected String parentId;
@XmlElement(name = "store_id")
protected String storeId;
@XmlElement(name = "created_at")
protected String createdAt;
@XmlElement(name = "updated_at")
protected String updatedAt;
@XmlElement(name = "is_active")
protected String isActive;
@XmlElement(name = "shipping_address_id")
protected String shippingAddressId;
@XmlElement(name = "shipping_firstname")
protected String shippingFirstname;
@XmlElement(name = "shipping_lastname")
protected String shippingLastname;
@XmlElement(name = "order_id")
protected String orderId;
@XmlElement(name = "order_increment_id")
protected String orderIncrementId;
@XmlElement(name = "order_created_at")
protected String orderCreatedAt;
@XmlElement(name = "total_qty")
protected String totalQty;
@XmlElement(name = "shipment_id")
protected String shipmentId;
protected SalesOrderShipmentItemEntityArray items;
protected SalesOrderShipmentTrackEntityArray tracks;
protected SalesOrderShipmentCommentEntityArray comments;
/**
* Gets the value of the incrementId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIncrementId() {
return incrementId;
}
/**
* Sets the value of the incrementId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIncrementId(String value) {
this.incrementId = value;
}
/**
* Gets the value of the parentId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParentId() {
return parentId;
}
/**
* Sets the value of the parentId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParentId(String value) {
this.parentId = value;
}
/**
* Gets the value of the storeId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStoreId() {
return storeId;
}
/**
* Sets the value of the storeId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStoreId(String value) {
this.storeId = value;
}
/**
* Gets the value of the createdAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedAt() {
return createdAt;
}
/**
* Sets the value of the createdAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedAt(String value) {
this.createdAt = value;
}
/**
* Gets the value of the updatedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUpdatedAt() {
return updatedAt;
}
/**
* Sets the value of the updatedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpdatedAt(String value) {
this.updatedAt = value;
}
/**
* Gets the value of the isActive property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsActive() {
return isActive;
}
/**
* Sets the value of the isActive property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsActive(String value) {
this.isActive = value;
}
/**
* Gets the value of the shippingAddressId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShippingAddressId() {
return shippingAddressId;
}
/**
* Sets the value of the shippingAddressId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShippingAddressId(String value) {
this.shippingAddressId = value;
}
/**
* Gets the value of the shippingFirstname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShippingFirstname() {
return shippingFirstname;
}
/**
* Sets the value of the shippingFirstname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShippingFirstname(String value) {
this.shippingFirstname = value;
}
/**
* Gets the value of the shippingLastname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShippingLastname() {
return shippingLastname;
}
/**
* Sets the value of the shippingLastname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShippingLastname(String value) {
this.shippingLastname = value;
}
/**
* Gets the value of the orderId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderId() {
return orderId;
}
/**
* Sets the value of the orderId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderId(String value) {
this.orderId = value;
}
/**
* Gets the value of the orderIncrementId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderIncrementId() {
return orderIncrementId;
}
/**
* Sets the value of the orderIncrementId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderIncrementId(String value) {
this.orderIncrementId = value;
}
/**
* Gets the value of the orderCreatedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderCreatedAt() {
return orderCreatedAt;
}
/**
* Sets the value of the orderCreatedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderCreatedAt(String value) {
this.orderCreatedAt = value;
}
/**
* Gets the value of the totalQty property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTotalQty() {
return totalQty;
}
/**
* Sets the value of the totalQty property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTotalQty(String value) {
this.totalQty = value;
}
/**
* Gets the value of the shipmentId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShipmentId() {
return shipmentId;
}
/**
* Sets the value of the shipmentId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShipmentId(String value) {
this.shipmentId = value;
}
/**
* Gets the value of the items property.
*
* @return
* possible object is
* {@link SalesOrderShipmentItemEntityArray }
*
*/
public SalesOrderShipmentItemEntityArray getItems() {
return items;
}
/**
* Sets the value of the items property.
*
* @param value
* allowed object is
* {@link SalesOrderShipmentItemEntityArray }
*
*/
public void setItems(SalesOrderShipmentItemEntityArray value) {
this.items = value;
}
/**
* Gets the value of the tracks property.
*
* @return
* possible object is
* {@link SalesOrderShipmentTrackEntityArray }
*
*/
public SalesOrderShipmentTrackEntityArray getTracks() {
return tracks;
}
/**
* Sets the value of the tracks property.
*
* @param value
* allowed object is
* {@link SalesOrderShipmentTrackEntityArray }
*
*/
public void setTracks(SalesOrderShipmentTrackEntityArray value) {
this.tracks = value;
}
/**
* Gets the value of the comments property.
*
* @return
* possible object is
* {@link SalesOrderShipmentCommentEntityArray }
*
*/
public SalesOrderShipmentCommentEntityArray getComments() {
return comments;
}
/**
* Sets the value of the comments property.
*
* @param value
* allowed object is
* {@link SalesOrderShipmentCommentEntityArray }
*
*/
public void setComments(SalesOrderShipmentCommentEntityArray value) {
this.comments = value;
}
}