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 customerCustomerEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="customerCustomerEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="customer_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="updated_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="increment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="store_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="website_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="created_in" type="{http://www.w3.org/2001/XMLSchema}string" 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="middlename" 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="group_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="suffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dob" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="taxvat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="confirmation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="password_hash" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "customerCustomerEntity", propOrder = {
"customerId",
"createdAt",
"updatedAt",
"incrementId",
"storeId",
"websiteId",
"createdIn",
"email",
"firstname",
"middlename",
"lastname",
"groupId",
"prefix",
"suffix",
"dob",
"taxvat",
"confirmation",
"passwordHash"
})
public class CustomerCustomerEntity {
@XmlElement(name = "customer_id")
protected Integer customerId;
@XmlElement(name = "created_at")
protected String createdAt;
@XmlElement(name = "updated_at")
protected String updatedAt;
@XmlElement(name = "increment_id")
protected String incrementId;
@XmlElement(name = "store_id")
protected Integer storeId;
@XmlElement(name = "website_id")
protected Integer websiteId;
@XmlElement(name = "created_in")
protected String createdIn;
protected String email;
protected String firstname;
protected String middlename;
protected String lastname;
@XmlElement(name = "group_id")
protected Integer groupId;
protected String prefix;
protected String suffix;
protected String dob;
protected String taxvat;
protected Boolean confirmation;
@XmlElement(name = "password_hash")
protected String passwordHash;
/**
* 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 createdAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedAt() {
return createdAt;
}
/**
* Sets the value of the createdAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedAt(String value) {
this.createdAt = value;
}
/**
* Gets the value of the updatedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUpdatedAt() {
return updatedAt;
}
/**
* Sets the value of the updatedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpdatedAt(String value) {
this.updatedAt = value;
}
/**
* Gets the value of the incrementId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIncrementId() {
return incrementId;
}
/**
* Sets the value of the incrementId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIncrementId(String value) {
this.incrementId = 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 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 createdIn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedIn() {
return createdIn;
}
/**
* Sets the value of the createdIn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedIn(String value) {
this.createdIn = 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 middlename property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMiddlename() {
return middlename;
}
/**
* Sets the value of the middlename property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMiddlename(String value) {
this.middlename = 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 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;
}
/**
* Gets the value of the prefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrefix() {
return prefix;
}
/**
* Sets the value of the prefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrefix(String value) {
this.prefix = value;
}
/**
* Gets the value of the suffix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuffix() {
return suffix;
}
/**
* Sets the value of the suffix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuffix(String value) {
this.suffix = value;
}
/**
* Gets the value of the dob property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDob() {
return dob;
}
/**
* Sets the value of the dob property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDob(String value) {
this.dob = value;
}
/**
* Gets the value of the taxvat property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTaxvat() {
return taxvat;
}
/**
* Sets the value of the taxvat property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTaxvat(String value) {
this.taxvat = value;
}
/**
* Gets the value of the confirmation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isConfirmation() {
return confirmation;
}
/**
* Sets the value of the confirmation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setConfirmation(Boolean value) {
this.confirmation = value;
}
/**
* Gets the value of the passwordHash property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPasswordHash() {
return passwordHash;
}
/**
* Sets the value of the passwordHash property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPasswordHash(String value) {
this.passwordHash = value;
}
}