
com.connectifier.xeroclient.models.ArrayOfInvoice 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="ArrayOfInvoice">
* <xs:sequence>
* <xs:element type="Invoice" nillable="true" name="Invoice" minOccurs="0" maxOccurs="unbounded"/>
* </xs:sequence>
* </xs:complexType>
*
*/
public class ArrayOfInvoice
{
private List invoiceList = new ArrayList();
/**
* Get the list of 'Invoice' element items.
*
* @return list
*/
public List getInvoiceList() {
return invoiceList;
}
/**
* Set the list of 'Invoice' element items.
*
* @param list
*/
public void setInvoiceList(List list) {
invoiceList = list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy