
com.bronto.api.model.FieldOptionObject Maven / Gradle / Ivy
package com.bronto.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for fieldOptionObject complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="fieldOptionObject">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fieldOptionObject", propOrder = {
"label",
"value",
"isDefault"
})
public class FieldOptionObject {
protected String label;
protected String value;
protected boolean isDefault;
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the isDefault property.
*
*/
public boolean isIsDefault() {
return isDefault;
}
/**
* Sets the value of the isDefault property.
*
*/
public void setIsDefault(boolean value) {
this.isDefault = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy