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 salesOrderShipmentItemEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="salesOrderShipmentItemEntity"> * <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="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="sku" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="order_item_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="product_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="weight" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="price" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="qty" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="item_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "salesOrderShipmentItemEntity", propOrder = { "incrementId", "parentId", "createdAt", "updatedAt", "isActive", "sku", "name", "orderItemId", "productId", "weight", "price", "qty", "itemId" }) public class SalesOrderShipmentItemEntity { @XmlElement(name = "increment_id") protected String incrementId; @XmlElement(name = "parent_id") protected String parentId; @XmlElement(name = "created_at") protected String createdAt; @XmlElement(name = "updated_at") protected String updatedAt; @XmlElement(name = "is_active") protected String isActive; protected String sku; protected String name; @XmlElement(name = "order_item_id") protected String orderItemId; @XmlElement(name = "product_id") protected String productId; protected String weight; protected String price; protected String qty; @XmlElement(name = "item_id") protected String itemId; /** * 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 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 sku property. * * @return * possible object is * {@link String } * */ public String getSku() { return sku; } /** * Sets the value of the sku property. * * @param value * allowed object is * {@link String } * */ public void setSku(String value) { this.sku = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the orderItemId property. * * @return * possible object is * {@link String } * */ public String getOrderItemId() { return orderItemId; } /** * Sets the value of the orderItemId property. * * @param value * allowed object is * {@link String } * */ public void setOrderItemId(String value) { this.orderItemId = value; } /** * Gets the value of the productId property. * * @return * possible object is * {@link String } * */ public String getProductId() { return productId; } /** * Sets the value of the productId property. * * @param value * allowed object is * {@link String } * */ public void setProductId(String value) { this.productId = value; } /** * Gets the value of the weight property. * * @return * possible object is * {@link String } * */ public String getWeight() { return weight; } /** * Sets the value of the weight property. * * @param value * allowed object is * {@link String } * */ public void setWeight(String value) { this.weight = value; } /** * Gets the value of the price property. * * @return * possible object is * {@link String } * */ public String getPrice() { return price; } /** * Sets the value of the price property. * * @param value * allowed object is * {@link String } * */ public void setPrice(String value) { this.price = value; } /** * Gets the value of the qty property. * * @return * possible object is * {@link String } * */ public String getQty() { return qty; } /** * Sets the value of the qty property. * * @param value * allowed object is * {@link String } * */ public void setQty(String value) { this.qty = value; } /** * Gets the value of the itemId property. * * @return * possible object is * {@link String } * */ public String getItemId() { return itemId; } /** * Sets the value of the itemId property. * * @param value * allowed object is * {@link String } * */ public void setItemId(String value) { this.itemId = value; } }