All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bronto.api.model.SegmentCriteriaObject Maven / Gradle / Ivy

The newest version!

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 segmentCriteriaObject complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="segmentCriteriaObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="operator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="condition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "segmentCriteriaObject", propOrder = { "operator", "condition", "value" }) public class SegmentCriteriaObject { protected String operator; protected String condition; protected String value; /** * Gets the value of the operator property. * * @return * possible object is * {@link String } * */ public String getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link String } * */ public void setOperator(String value) { this.operator = value; } /** * Gets the value of the condition property. * * @return * possible object is * {@link String } * */ public String getCondition() { return condition; } /** * Sets the value of the condition property. * * @param value * allowed object is * {@link String } * */ public void setCondition(String value) { this.condition = 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