All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.connectifier.xeroclient.models.ContactPerson Maven / Gradle / Ivy


package com.connectifier.xeroclient.models;

import java.util.List;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ContactPerson">
 *   <xs:sequence>
 *     <xs:element type="xs:string" name="FirstName" minOccurs="0" maxOccurs="1"/>
 *     <xs:element type="xs:string" name="LastName" minOccurs="0" maxOccurs="1"/>
 *     <xs:element type="xs:string" name="EmailAddress" minOccurs="0" maxOccurs="1"/>
 *     <xs:element type="xs:boolean" name="IncludeInEmails" minOccurs="0" maxOccurs="1"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class ContactPerson { private String firstName; private String lastName; private String emailAddress; private Boolean includeInEmails; /** * Get the 'FirstName' element value. * * @return value */ public String getFirstName() { return firstName; } /** * Set the 'FirstName' element value. * * @param firstName */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * Get the 'LastName' element value. * * @return value */ public String getLastName() { return lastName; } /** * Set the 'LastName' element value. * * @param lastName */ public void setLastName(String lastName) { this.lastName = lastName; } /** * Get the 'EmailAddress' element value. * * @return value */ public String getEmailAddress() { return emailAddress; } /** * Set the 'EmailAddress' element value. * * @param emailAddress */ public void setEmailAddress(String emailAddress) { this.emailAddress = emailAddress; } /** * Get the 'IncludeInEmails' element value. * * @return value */ public Boolean getIncludeInEmails() { return includeInEmails; } /** * Set the 'IncludeInEmails' element value. * * @param includeInEmails */ public void setIncludeInEmails(Boolean includeInEmails) { this.includeInEmails = includeInEmails; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy