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