
com.connectifier.xeroclient.models.Balances Maven / Gradle / Ivy
package com.connectifier.xeroclient.models;
import java.util.ArrayList;
import java.util.List;
/**
* Schema fragment(s) for this class:
*
* <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Balances">
* <xs:all>
* <xs:element type="AccountsReceivable" nillable="true" name="AccountsReceivable" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element type="AccountsPayable" nillable="true" name="AccountsPayable" minOccurs="0" maxOccurs="unbounded"/>
* </xs:all>
* </xs:complexType>
*
*/
public class Balances
{
private List accountsReceivableList = new ArrayList();
private List accountsPayableList = new ArrayList();
/**
* Get the list of 'AccountsReceivable' element items.
*
* @return list
*/
public List getAccountsReceivableList() {
return accountsReceivableList;
}
/**
* Set the list of 'AccountsReceivable' element items.
*
* @param list
*/
public void setAccountsReceivableList(List list) {
accountsReceivableList = list;
}
/**
* Get the list of 'AccountsPayable' element items.
*
* @return list
*/
public List getAccountsPayableList() {
return accountsPayableList;
}
/**
* Set the list of 'AccountsPayable' element items.
*
* @param list
*/
public void setAccountsPayableList(List list) {
accountsPayableList = list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy