
com.connectifier.xeroclient.models.ReportAttribute 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="ReportAttribute">
* <xs:sequence>
* <xs:element type="xs:string" name="Name" 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 ReportAttribute
{
private String name;
private String description;
private String value;
/**
* Get the 'Name' element value.
*
* @return value
*/
public String getName() {
return name;
}
/**
* Set the 'Name' element value.
*
* @param name
*/
public void setName(String name) {
this.name = name;
}
/**
* 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