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