com.microsoft.bingads.v13.campaignmanagement.StringRuleItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.v13.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;
/**
* Java class for StringRuleItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StringRuleItem">
* <complexContent>
* <extension base="{https://bingads.microsoft.com/CampaignManagement/v13}RuleItem">
* <sequence>
* <element name="Operand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Operator" type="{https://bingads.microsoft.com/CampaignManagement/v13}StringOperator" minOccurs="0"/>
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StringRuleItem", 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;
}
}