public class

Invoice

extends CdmBase
implements Serializable
java.lang.Object
   ↳ org.mule.modules.quickbooks.online.schema.CdmBase
     ↳ org.mule.modules.quickbooks.online.schema.Invoice

Class Overview

Financial transaction representing a request for payment for goods or services that have been sold.

Java class for Invoice complex type.

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

 <complexType name="Invoice">
   <complexContent>
     <extension base="{http://www.intuit.com/sb/cdm/v2}CdmBase">
       <sequence>
         <element name="Header" type="{http://www.intuit.com/sb/cdm/v2}InvoiceHeader" minOccurs="0"/>
         <element name="Line" type="{http://www.intuit.com/sb/cdm/v2}InvoiceLine" maxOccurs="unbounded" minOccurs="0"/>
         <element name="TaxLine" type="{http://www.intuit.com/sb/cdm/v2}TaxLine" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 

Summary

Constants
long serialVersionUID
[Expand]
Inherited Constants
From class org.mule.modules.quickbooks.online.schema.CdmBase
Fields
protected InvoiceHeader header
protected List<InvoiceLine> line
protected List<TaxLine> taxLine
[Expand]
Inherited Fields
From class org.mule.modules.quickbooks.online.schema.CdmBase
Public Constructors
Invoice()
Public Methods
InvoiceHeader getHeader()
Gets the value of the header property.
List<InvoiceLine> getLine()
Gets the value of the line property.
List<TaxLine> getTaxLine()
Gets the value of the taxLine property.
void setHeader(InvoiceHeader value)
Sets the value of the header property.
void setLine(List<InvoiceLine> line)
Sets the value of the line property.
void setTaxLine(List<TaxLine> taxLine)
Sets the value of the taxLine property.
[Expand]
Inherited Methods
From class org.mule.modules.quickbooks.online.schema.CdmBase
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: 1 (0x0000000000000001)

Fields

protected InvoiceHeader header

protected List<InvoiceLine> line

protected List<TaxLine> taxLine

Public Constructors

public Invoice ()

Public Methods

public InvoiceHeader getHeader ()

Gets the value of the header property.

Returns

public List<InvoiceLine> getLine ()

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

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

    getLine().add(newItem);
 

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

public List<TaxLine> getTaxLine ()

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

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

    getTaxLine().add(newItem);
 

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

public void setHeader (InvoiceHeader value)

Sets the value of the header property.

Parameters
value Allowed object is InvoiceHeader

public void setLine (List<InvoiceLine> line)

Sets the value of the line property.

Parameters
line Allowed object is InvoiceLine

public void setTaxLine (List<TaxLine> taxLine)

Sets the value of the taxLine property.

Parameters
taxLine Allowed object is TaxLine