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 shoppingCartCustomerEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="shoppingCartCustomerEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="mode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="customer_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="firstname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lastname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="confirmation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="website_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="store_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="group_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "shoppingCartCustomerEntity", propOrder = {
"mode",
"customerId",
"email",
"firstname",
"lastname",
"password",
"confirmation",
"websiteId",
"storeId",
"groupId"
})
public class ShoppingCartCustomerEntity {
protected String mode;
@XmlElement(name = "customer_id")
protected Integer customerId;
protected String email;
protected String firstname;
protected String lastname;
protected String password;
protected String confirmation;
@XmlElement(name = "website_id")
protected Integer websiteId;
@XmlElement(name = "store_id")
protected Integer storeId;
@XmlElement(name = "group_id")
protected Integer groupId;
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMode(String value) {
this.mode = value;
}
/**
* Gets the value of the customerId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCustomerId() {
return customerId;
}
/**
* Sets the value of the customerId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCustomerId(Integer value) {
this.customerId = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the firstname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirstname() {
return firstname;
}
/**
* Sets the value of the firstname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirstname(String value) {
this.firstname = value;
}
/**
* Gets the value of the lastname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastname() {
return lastname;
}
/**
* Sets the value of the lastname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastname(String value) {
this.lastname = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
/**
* Gets the value of the confirmation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConfirmation() {
return confirmation;
}
/**
* Sets the value of the confirmation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConfirmation(String value) {
this.confirmation = value;
}
/**
* Gets the value of the websiteId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getWebsiteId() {
return websiteId;
}
/**
* Sets the value of the websiteId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setWebsiteId(Integer value) {
this.websiteId = value;
}
/**
* Gets the value of the storeId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getStoreId() {
return storeId;
}
/**
* Sets the value of the storeId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setStoreId(Integer value) {
this.storeId = value;
}
/**
* Gets the value of the groupId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getGroupId() {
return groupId;
}
/**
* Sets the value of the groupId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setGroupId(Integer value) {
this.groupId = value;
}
}