public class

EmailAddress

extends Object
java.lang.Object
   ↳ org.mule.modules.quickbooks.windows.schema.EmailAddress

Class Overview

Product: QBW Description: EmailAddressType definition, this object is always manipulated in context of another parent object like Person, Organization etc

Java class for EmailAddress complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="EmailAddress">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Id" type="{http://www.intuit.com/sb/cdm/v2}IdType" minOccurs="0"/>
         <element name="Address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="DateLastVerified" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
         <element name="Default" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <element name="Tag" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected Boolean _default
protected String address
protected XMLGregorianCalendar dateLastVerified
protected IdType id
protected List<String> tag
Public Constructors
EmailAddress()
Public Methods
String getAddress()
Gets the value of the address property.
XMLGregorianCalendar getDateLastVerified()
Gets the value of the dateLastVerified property.
IdType getId()
Gets the value of the id property.
List<String> getTag()
Gets the value of the tag property.
Boolean isDefault()
Gets the value of the default property.
void setAddress(String value)
Sets the value of the address property.
void setDateLastVerified(XMLGregorianCalendar value)
Sets the value of the dateLastVerified property.
void setDefault(Boolean value)
Sets the value of the default property.
void setId(IdType value)
Sets the value of the id property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected Boolean _default

protected String address

protected XMLGregorianCalendar dateLastVerified

protected IdType id

protected List<String> tag

Public Constructors

public EmailAddress ()

Public Methods

public String getAddress ()

Gets the value of the address property.

Returns
  • possible object is String

public XMLGregorianCalendar getDateLastVerified ()

Gets the value of the dateLastVerified property.

Returns
  • possible object is XMLGregorianCalendar

public IdType getId ()

Gets the value of the id property.

Returns

public List<String> getTag ()

Gets the value of the tag property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the tag property.

For example, to add a new item, do as follows:

    getTag().add(newItem);
 

Objects of the following type(s) are allowed in the list String

public Boolean isDefault ()

Gets the value of the default property.

Returns
  • possible object is Boolean

public void setAddress (String value)

Sets the value of the address property.

Parameters
value Allowed object is String

public void setDateLastVerified (XMLGregorianCalendar value)

Sets the value of the dateLastVerified property.

Parameters
value Allowed object is XMLGregorianCalendar

public void setDefault (Boolean value)

Sets the value of the default property.

Parameters
value Allowed object is Boolean

public void setId (IdType value)

Sets the value of the id property.

Parameters
value Allowed object is IdType