All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.connectifier.xeroclient.models.ReportTitles 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="ReportTitles">
 *   <xs:sequence>
 *     <xs:element type="xs:string" name="ReportTitle" minOccurs="0" maxOccurs="unbounded"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class ReportTitles { private List reportTitleList = new ArrayList(); /** * Get the list of 'ReportTitle' element items. * * @return list */ public List getReportTitleList() { return reportTitleList; } /** * Set the list of 'ReportTitle' element items. * * @param list */ public void setReportTitleList(List list) { reportTitleList = list; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy