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 orderItemIdQty complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="orderItemIdQty">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="order_item_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="qty" type="{http://www.w3.org/2001/XMLSchema}double"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "orderItemIdQty", propOrder = {
"orderItemId",
"qty"
})
public class OrderItemIdQty {
@XmlElement(name = "order_item_id")
protected int orderItemId;
protected double qty;
/**
* Gets the value of the orderItemId property.
*
*/
public int getOrderItemId() {
return orderItemId;
}
/**
* Sets the value of the orderItemId property.
*
*/
public void setOrderItemId(int value) {
this.orderItemId = value;
}
/**
* Gets the value of the qty property.
*
*/
public double getQty() {
return qty;
}
/**
* Sets the value of the qty property.
*
*/
public void setQty(double value) {
this.qty = value;
}
}