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