
com.microsoft.bingads.v13.campaignmanagement.Criterion Maven / Gradle / Ivy
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Criterion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Criterion">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Criterion", propOrder = {
"type"
})
@XmlSeeAlso({
DayTimeCriterion.class,
AudienceCriterion.class,
DeviceCriterion.class,
LocationIntentCriterion.class,
RadiusCriterion.class,
ProductScope.class,
ProfileCriterion.class,
ProductPartition.class,
GenderCriterion.class,
StoreCriterion.class,
LocationCriterion.class,
AgeCriterion.class,
Webpage.class
})
public class Criterion {
@XmlElement(name = "Type", nillable = true)
protected String type;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy