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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="productIds" type="{urn:Magento}ArrayOfString"/> * <element name="productData" type="{urn:Magento}catalogInventoryStockItemUpdateEntityArray"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sessionId", "productIds", "productData" }) @XmlRootElement(name = "catalogInventoryStockItemMultiUpdateRequestParam") public class CatalogInventoryStockItemMultiUpdateRequestParam { @XmlElement(required = true) protected String sessionId; @XmlElement(required = true) protected ArrayOfString productIds; @XmlElement(required = true) protected CatalogInventoryStockItemUpdateEntityArray productData; /** * 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 productIds property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getProductIds() { return productIds; } /** * Sets the value of the productIds property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setProductIds(ArrayOfString value) { this.productIds = value; } /** * Gets the value of the productData property. * * @return * possible object is * {@link CatalogInventoryStockItemUpdateEntityArray } * */ public CatalogInventoryStockItemUpdateEntityArray getProductData() { return productData; } /** * Sets the value of the productData property. * * @param value * allowed object is * {@link CatalogInventoryStockItemUpdateEntityArray } * */ public void setProductData(CatalogInventoryStockItemUpdateEntityArray value) { this.productData = value; } }