public class

ReportAccount

extends Object
java.lang.Object
   ↳ org.mule.modules.quickbooks.online.schema.ReportAccount

Class Overview

Java class for ReportAccount complex type.

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

 <complexType name="ReportAccount">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="AccountName" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="AccountBalance" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="SubAccounts" type="{http://www.intuit.com/sb/cdm/qboReports}ReportAccount" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected String accountBalance
protected String accountName
protected List<ReportAccount> subAccounts
Public Constructors
ReportAccount()
Public Methods
String getAccountBalance()
Gets the value of the accountBalance property.
String getAccountName()
Gets the value of the accountName property.
List<ReportAccount> getSubAccounts()
Gets the value of the subAccounts property.
void setAccountBalance(String value)
Sets the value of the accountBalance property.
void setAccountName(String value)
Sets the value of the accountName property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected String accountBalance

protected String accountName

protected List<ReportAccount> subAccounts

Public Constructors

public ReportAccount ()

Public Methods

public String getAccountBalance ()

Gets the value of the accountBalance property.

Returns
  • possible object is String

public String getAccountName ()

Gets the value of the accountName property.

Returns
  • possible object is String

public List<ReportAccount> getSubAccounts ()

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

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

    getSubAccounts().add(newItem);
 

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

public void setAccountBalance (String value)

Sets the value of the accountBalance property.

Parameters
value Allowed object is String

public void setAccountName (String value)

Sets the value of the accountName property.

Parameters
value Allowed object is String