package echosign.api.clientv20.dto19; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FormValue complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="FormValue"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="fieldInputType" type="{http://dto19.api.echosign}InputType" minOccurs="0"/> * <element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="fieldValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FormValue", propOrder = { "fieldInputType", "fieldName", "fieldValue" }) public class FormValue { @XmlElement(nillable = true) protected InputType fieldInputType; @XmlElement(nillable = true) protected String fieldName; @XmlElement(nillable = true) protected String fieldValue; /** * Gets the value of the fieldInputType property. * * @return * possible object is * {@link InputType } * */ public InputType getFieldInputType() { return fieldInputType; } /** * Sets the value of the fieldInputType property. * * @param value * allowed object is * {@link InputType } * */ public void setFieldInputType(InputType value) { this.fieldInputType = value; } /** * Gets the value of the fieldName property. * * @return * possible object is * {@link String } * */ public String getFieldName() { return fieldName; } /** * Sets the value of the fieldName property. * * @param value * allowed object is * {@link String } * */ public void setFieldName(String value) { this.fieldName = value; } /** * Gets the value of the fieldValue property. * * @return * possible object is * {@link String } * */ public String getFieldValue() { return fieldValue; } /** * Sets the value of the fieldValue property. * * @param value * allowed object is * {@link String } * */ public void setFieldValue(String value) { this.fieldValue = value; } }