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 storeEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="storeEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="store_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="website_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="group_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sort_order" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="is_active" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "storeEntity", propOrder = {
"storeId",
"code",
"websiteId",
"groupId",
"name",
"sortOrder",
"isActive"
})
public class StoreEntity {
@XmlElement(name = "store_id")
protected int storeId;
@XmlElement(required = true)
protected String code;
@XmlElement(name = "website_id")
protected int websiteId;
@XmlElement(name = "group_id")
protected int groupId;
@XmlElement(required = true)
protected String name;
@XmlElement(name = "sort_order")
protected int sortOrder;
@XmlElement(name = "is_active")
protected int isActive;
/**
* Gets the value of the storeId property.
*
*/
public int getStoreId() {
return storeId;
}
/**
* Sets the value of the storeId property.
*
*/
public void setStoreId(int value) {
this.storeId = value;
}
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the websiteId property.
*
*/
public int getWebsiteId() {
return websiteId;
}
/**
* Sets the value of the websiteId property.
*
*/
public void setWebsiteId(int value) {
this.websiteId = value;
}
/**
* Gets the value of the groupId property.
*
*/
public int getGroupId() {
return groupId;
}
/**
* Sets the value of the groupId property.
*
*/
public void setGroupId(int value) {
this.groupId = 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 sortOrder property.
*
*/
public int getSortOrder() {
return sortOrder;
}
/**
* Sets the value of the sortOrder property.
*
*/
public void setSortOrder(int value) {
this.sortOrder = value;
}
/**
* Gets the value of the isActive property.
*
*/
public int getIsActive() {
return isActive;
}
/**
* Sets the value of the isActive property.
*
*/
public void setIsActive(int value) {
this.isActive = value;
}
}