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