public class

LineBase

extends Object
java.lang.Object
   ↳ org.mule.modules.quickbooks.windows.schema.LineBase
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Product: ALL Description: Subset of data that is common to all transaction lines.

Java class for LineBase complex type.

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

 <complexType name="LineBase">
   <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="Desc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="GroupMember" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <element name="CustomField" type="{http://www.intuit.com/sb/cdm/v2}CustomField" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected List<CustomField> customField
protected String desc
protected Boolean groupMember
protected IdType id
Public Constructors
LineBase()
Public Methods
List<CustomField> getCustomField()
Gets the value of the customField property.
String getDesc()
Gets the value of the desc property.
IdType getId()
Gets the value of the id property.
Boolean isGroupMember()
Gets the value of the groupMember property.
void setDesc(String value)
Sets the value of the desc property.
void setGroupMember(Boolean value)
Sets the value of the groupMember property.
void setId(IdType value)
Sets the value of the id property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected List<CustomField> customField

protected String desc

protected Boolean groupMember

protected IdType id

Public Constructors

public LineBase ()

Public Methods

public List<CustomField> getCustomField ()

Gets the value of the customField 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 customField property.

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

    getCustomField().add(newItem);
 

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

public String getDesc ()

Gets the value of the desc property.

Returns
  • possible object is String

public IdType getId ()

Gets the value of the id property.

Returns

public Boolean isGroupMember ()

Gets the value of the groupMember property.

Returns
  • possible object is Boolean

public void setDesc (String value)

Sets the value of the desc property.

Parameters
value Allowed object is String

public void setGroupMember (Boolean value)

Sets the value of the groupMember 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