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