/** * Mule Coupa Cloud Connector * * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. * * Coupa Connector com.coupa package contains portions of code based on Coupa4j * http://code.google.com/p/coupa4j/, under a MIT license: * http://www.opensource.org/licenses/mit-license.php. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.01.11 at 10:56:43 AM ART // package com.coupa.resources; import java.math.BigInteger; 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 user-summary complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="user-summary"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> * <element name="login" 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="employee-number" 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="salesforce-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "user-summary", propOrder = { "id", "login", "email", "employeeNumber", "firstname", "lastname", "salesforceId" }) public class UserSummary { protected BigInteger id; protected String login; protected String email; @XmlElement(name = "employee-number") protected String employeeNumber; protected String firstname; protected String lastname; @XmlElement(name = "salesforce-id") protected String salesforceId; /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } /** * Gets the value of the login property. * * @return * possible object is * {@link String } * */ public String getLogin() { return login; } /** * Sets the value of the login property. * * @param value * allowed object is * {@link String } * */ public void setLogin(String value) { this.login = 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 employeeNumber property. * * @return * possible object is * {@link String } * */ public String getEmployeeNumber() { return employeeNumber; } /** * Sets the value of the employeeNumber property. * * @param value * allowed object is * {@link String } * */ public void setEmployeeNumber(String value) { this.employeeNumber = 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 salesforceId property. * * @return * possible object is * {@link String } * */ public String getSalesforceId() { return salesforceId; } /** * Sets the value of the salesforceId property. * * @param value * allowed object is * {@link String } * */ public void setSalesforceId(String value) { this.salesforceId = value; } }