package com.microsoft.bingads.v11.campaignmanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for StringRuleItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StringRuleItem"> * <complexContent> * <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V11}RuleItem"> * <sequence> * <element name="Operand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Operator" type="{https://bingads.microsoft.com/CampaignManagement/v11}StringOperator" minOccurs="0"/> * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StringRuleItem", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V11", propOrder = { "operand", "operator", "value" }) public class StringRuleItem extends RuleItem { @XmlElement(name = "Operand", nillable = true) protected String operand; @XmlElement(name = "Operator") @XmlSchemaType(name = "string") protected StringOperator operator; @XmlElement(name = "Value", nillable = true) protected String value; /** * Gets the value of the operand property. * * @return * possible object is * {@link String } * */ public String getOperand() { return operand; } /** * Sets the value of the operand property. * * @param value * allowed object is * {@link String } * */ public void setOperand(String value) { this.operand = value; } /** * Gets the value of the operator property. * * @return * possible object is * {@link StringOperator } * */ public StringOperator getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link StringOperator } * */ public void setOperator(StringOperator 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; } }