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