package ebayopensource.apis.eblbasecomponents; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * * CS User Identifier * * * <p>Java class for CSUserIdType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CSUserIdType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="UserID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="EmailAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="UserOracleID" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CSUserIdType", propOrder = { "userID", "emailAddress", "userOracleID" }) public class CSUserIdType { @XmlElement(name = "UserID") protected String userID; @XmlElement(name = "EmailAddress") protected String emailAddress; @XmlElement(name = "UserOracleID") protected Long userOracleID; /** * Gets the value of the userID property. * * @return * possible object is * {@link String } * */ public String getUserID() { return userID; } /** * Sets the value of the userID property. * * @param value * allowed object is * {@link String } * */ public void setUserID(String value) { this.userID = value; } /** * Gets the value of the emailAddress property. * * @return * possible object is * {@link String } * */ public String getEmailAddress() { return emailAddress; } /** * Sets the value of the emailAddress property. * * @param value * allowed object is * {@link String } * */ public void setEmailAddress(String value) { this.emailAddress = value; } /** * Gets the value of the userOracleID property. * * @return * possible object is * {@link Long } * */ public Long getUserOracleID() { return userOracleID; } /** * Sets the value of the userOracleID property. * * @param value * allowed object is * {@link Long } * */ public void setUserOracleID(Long value) { this.userOracleID = value; } }