
com.connectifier.xeroclient.models.ReportRow Maven / Gradle / Ivy
package com.connectifier.xeroclient.models;
import java.util.List;
/**
* Schema fragment(s) for this class:
*
* <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ReportRow">
* <xs:sequence>
* <xs:element type="ReportRowType" name="RowType" minOccurs="1" maxOccurs="1"/>
* <xs:element type="xs:string" name="Title" minOccurs="0" maxOccurs="1"/>
* <xs:element type="xs:string" name="Header" minOccurs="0" maxOccurs="1"/>
* <xs:element type="ReportRows" name="Rows" minOccurs="0" maxOccurs="1"/>
* <xs:element type="ReportCells" name="Cells" minOccurs="0" maxOccurs="1"/>
* </xs:sequence>
* </xs:complexType>
*
*/
public class ReportRow
{
private ReportRowType rowType;
private String title;
private String header;
private ReportRows rows;
private ReportCells cells;
/**
* Get the 'RowType' element value.
*
* @return value
*/
public ReportRowType getRowType() {
return rowType;
}
/**
* Set the 'RowType' element value.
*
* @param rowType
*/
public void setRowType(ReportRowType rowType) {
this.rowType = rowType;
}
/**
* Get the 'Title' element value.
*
* @return value
*/
public String getTitle() {
return title;
}
/**
* Set the 'Title' element value.
*
* @param title
*/
public void setTitle(String title) {
this.title = title;
}
/**
* Get the 'Header' element value.
*
* @return value
*/
public String getHeader() {
return header;
}
/**
* Set the 'Header' element value.
*
* @param header
*/
public void setHeader(String header) {
this.header = header;
}
/**
* Get the 'Rows' element value.
*
* @return value
*/
public ReportRows getRows() {
return rows;
}
/**
* Set the 'Rows' element value.
*
* @param rows
*/
public void setRows(ReportRows rows) {
this.rows = rows;
}
/**
* Get the 'Cells' element value.
*
* @return value
*/
public ReportCells getCells() {
return cells;
}
/**
* Set the 'Cells' element value.
*
* @param cells
*/
public void setCells(ReportCells cells) {
this.cells = cells;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy