
com.connectifier.xeroclient.models.ContactPerson Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.03.08 at 08:40:56 PM PDT
//
package com.connectifier.xeroclient.models;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ContactPerson complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ContactPerson">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <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="EmailAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IncludeInEmails" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ContactPerson", propOrder = {
"firstName",
"lastName",
"emailAddress",
"includeInEmails"
})
public class ContactPerson {
@XmlElement(name = "FirstName")
protected String firstName;
@XmlElement(name = "LastName")
protected String lastName;
@XmlElement(name = "EmailAddress")
protected String emailAddress;
@XmlElement(name = "IncludeInEmails")
protected Boolean includeInEmails;
/**
* 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 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 includeInEmails property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIncludeInEmails() {
return includeInEmails;
}
/**
* Sets the value of the includeInEmails property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIncludeInEmails(Boolean value) {
this.includeInEmails = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy