/**
* 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* <p>Java class for contact-summary complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="contact-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="created-at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="updated-at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name-prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name-suffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name-additional" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name-given" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name-family" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name-fullname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="phone-work" type="{}phone-number-summary" minOccurs="0"/>
* <element name="phone-mobile" type="{}phone-number-summary" minOccurs="0"/>
* <element name="phone-fax" type="{}phone-number-summary" minOccurs="0"/>
* <element name="created-by" type="{}user-summary" minOccurs="0"/>
* <element name="updated-by" type="{}user-summary" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "contact-summary", propOrder = {
"id",
"createdAt",
"updatedAt",
"email",
"namePrefix",
"nameSuffix",
"nameAdditional",
"nameGiven",
"nameFamily",
"nameFullname",
"notes",
"phoneWork",
"phoneMobile",
"phoneFax",
"createdBy",
"updatedBy"
})
public class ContactSummary {
protected BigInteger id;
@XmlElement(name = "created-at")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createdAt;
@XmlElement(name = "updated-at")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar updatedAt;
protected String email;
@XmlElement(name = "name-prefix")
protected String namePrefix;
@XmlElement(name = "name-suffix")
protected String nameSuffix;
@XmlElement(name = "name-additional")
protected String nameAdditional;
@XmlElement(name = "name-given")
protected String nameGiven;
@XmlElement(name = "name-family")
protected String nameFamily;
@XmlElement(name = "name-fullname")
protected String nameFullname;
protected String notes;
@XmlElement(name = "phone-work")
protected PhoneNumberSummary phoneWork;
@XmlElement(name = "phone-mobile")
protected PhoneNumberSummary phoneMobile;
@XmlElement(name = "phone-fax")
protected PhoneNumberSummary phoneFax;
@XmlElement(name = "created-by")
protected UserSummary createdBy;
@XmlElement(name = "updated-by")
protected UserSummary updatedBy;
/**
* 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 createdAt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreatedAt() {
return createdAt;
}
/**
* Sets the value of the createdAt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreatedAt(XMLGregorianCalendar value) {
this.createdAt = value;
}
/**
* Gets the value of the updatedAt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getUpdatedAt() {
return updatedAt;
}
/**
* Sets the value of the updatedAt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setUpdatedAt(XMLGregorianCalendar value) {
this.updatedAt = 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 namePrefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamePrefix() {
return namePrefix;
}
/**
* Sets the value of the namePrefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamePrefix(String value) {
this.namePrefix = value;
}
/**
* Gets the value of the nameSuffix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameSuffix() {
return nameSuffix;
}
/**
* Sets the value of the nameSuffix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameSuffix(String value) {
this.nameSuffix = value;
}
/**
* Gets the value of the nameAdditional property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameAdditional() {
return nameAdditional;
}
/**
* Sets the value of the nameAdditional property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameAdditional(String value) {
this.nameAdditional = value;
}
/**
* Gets the value of the nameGiven property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameGiven() {
return nameGiven;
}
/**
* Sets the value of the nameGiven property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameGiven(String value) {
this.nameGiven = value;
}
/**
* Gets the value of the nameFamily property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameFamily() {
return nameFamily;
}
/**
* Sets the value of the nameFamily property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameFamily(String value) {
this.nameFamily = value;
}
/**
* Gets the value of the nameFullname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameFullname() {
return nameFullname;
}
/**
* Sets the value of the nameFullname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameFullname(String value) {
this.nameFullname = value;
}
/**
* Gets the value of the notes property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotes() {
return notes;
}
/**
* Sets the value of the notes property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotes(String value) {
this.notes = value;
}
/**
* Gets the value of the phoneWork property.
*
* @return
* possible object is
* {@link PhoneNumberSummary }
*
*/
public PhoneNumberSummary getPhoneWork() {
return phoneWork;
}
/**
* Sets the value of the phoneWork property.
*
* @param value
* allowed object is
* {@link PhoneNumberSummary }
*
*/
public void setPhoneWork(PhoneNumberSummary value) {
this.phoneWork = value;
}
/**
* Gets the value of the phoneMobile property.
*
* @return
* possible object is
* {@link PhoneNumberSummary }
*
*/
public PhoneNumberSummary getPhoneMobile() {
return phoneMobile;
}
/**
* Sets the value of the phoneMobile property.
*
* @param value
* allowed object is
* {@link PhoneNumberSummary }
*
*/
public void setPhoneMobile(PhoneNumberSummary value) {
this.phoneMobile = value;
}
/**
* Gets the value of the phoneFax property.
*
* @return
* possible object is
* {@link PhoneNumberSummary }
*
*/
public PhoneNumberSummary getPhoneFax() {
return phoneFax;
}
/**
* Sets the value of the phoneFax property.
*
* @param value
* allowed object is
* {@link PhoneNumberSummary }
*
*/
public void setPhoneFax(PhoneNumberSummary value) {
this.phoneFax = value;
}
/**
* Gets the value of the createdBy property.
*
* @return
* possible object is
* {@link UserSummary }
*
*/
public UserSummary getCreatedBy() {
return createdBy;
}
/**
* Sets the value of the createdBy property.
*
* @param value
* allowed object is
* {@link UserSummary }
*
*/
public void setCreatedBy(UserSummary value) {
this.createdBy = value;
}
/**
* Gets the value of the updatedBy property.
*
* @return
* possible object is
* {@link UserSummary }
*
*/
public UserSummary getUpdatedBy() {
return updatedBy;
}
/**
* Sets the value of the updatedBy property.
*
* @param value
* allowed object is
* {@link UserSummary }
*
*/
public void setUpdatedBy(UserSummary value) {
this.updatedBy = value;
}
}