
com.bronto.api.model.StringValue 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for stringValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="stringValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="operator" type="{http://api.bronto.com/v4}filterOperator" minOccurs="0"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "stringValue", propOrder = {
"operator",
"value"
})
public class StringValue {
@XmlSchemaType(name = "string")
protected FilterOperator operator;
protected String value;
/**
* Gets the value of the operator property.
*
* @return
* possible object is
* {@link FilterOperator }
*
*/
public FilterOperator getOperator() {
return operator;
}
/**
* Sets the value of the operator property.
*
* @param value
* allowed object is
* {@link FilterOperator }
*
*/
public void setOperator(FilterOperator value) {
this.operator = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy