
com.connectifier.xeroclient.models.ReportCell 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="ReportCell">
* <xs:sequence>
* <xs:element type="xs:string" name="Value" minOccurs="0" maxOccurs="1"/>
* <xs:element type="ReportCellAttributes" name="Attributes" minOccurs="0" maxOccurs="1"/>
* </xs:sequence>
* </xs:complexType>
*
*/
public class ReportCell
{
private String value;
private ReportCellAttributes attributes;
/**
* Get the 'Value' element value.
*
* @return value
*/
public String getValue() {
return value;
}
/**
* Set the 'Value' element value.
*
* @param value
*/
public void setValue(String value) {
this.value = value;
}
/**
* Get the 'Attributes' element value.
*
* @return value
*/
public ReportCellAttributes getAttributes() {
return attributes;
}
/**
* Set the 'Attributes' element value.
*
* @param attributes
*/
public void setAttributes(ReportCellAttributes attributes) {
this.attributes = attributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy