All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.connectifier.xeroclient.models.ArrayOfAccount 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="ArrayOfAccount">
 *   <xs:sequence>
 *     <xs:element type="Account" nillable="true" name="Account" minOccurs="0" maxOccurs="unbounded"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class ArrayOfAccount { private List accountList = new ArrayList(); /** * Get the list of 'Account' element items. * * @return list */ public List getAccountList() { return accountList; } /** * Set the list of 'Account' element items. * * @param list */ public void setAccountList(List list) { accountList = list; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy