
com.connectifier.xeroclient.models.ReportField 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="ReportField">
* <xs:sequence>
* <xs:element type="xs:string" name="FieldID" minOccurs="1" maxOccurs="1"/>
* <xs:element type="xs:string" name="Description" minOccurs="1" maxOccurs="1"/>
* <xs:element type="xs:string" name="Value" minOccurs="1" maxOccurs="1"/>
* </xs:sequence>
* </xs:complexType>
*
*/
public class ReportField
{
private String fieldID;
private String description;
private String value;
/**
* Get the 'FieldID' element value.
*
* @return value
*/
public String getFieldID() {
return fieldID;
}
/**
* Set the 'FieldID' element value.
*
* @param fieldID
*/
public void setFieldID(String fieldID) {
this.fieldID = fieldID;
}
/**
* Get the 'Description' element value.
*
* @return value
*/
public String getDescription() {
return description;
}
/**
* Set the 'Description' element value.
*
* @param description
*/
public void setDescription(String description) {
this.description = description;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy