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