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 catalogInventoryStockItemEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="catalogInventoryStockItemEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="product_id" 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="qty" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="is_in_stock" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "catalogInventoryStockItemEntity", propOrder = {
"productId",
"sku",
"qty",
"isInStock"
})
public class CatalogInventoryStockItemEntity {
@XmlElement(name = "product_id")
protected String productId;
protected String sku;
protected String qty;
@XmlElement(name = "is_in_stock")
protected String isInStock;
/**
* 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 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 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 isInStock property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsInStock() {
return isInStock;
}
/**
* Sets the value of the isInStock property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsInStock(String value) {
this.isInStock = value;
}
}