com.microsoft.bingads.v13.campaignmanagement.AddAdGroupCriterionsRequest Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import java.util.Collection;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"adGroupCriterions",
"criterionType"
})
@XmlRootElement(name = "AddAdGroupCriterionsRequest")
public class AddAdGroupCriterionsRequest {
@XmlElement(name = "AdGroupCriterions", nillable = true)
protected ArrayOfAdGroupCriterion adGroupCriterions;
@XmlElement(name = "CriterionType", type = String.class)
@XmlJavaTypeAdapter(Adapter13 .class)
protected Collection criterionType;
/**
* Gets the value of the adGroupCriterions property.
*
* @return
* possible object is
* {@link ArrayOfAdGroupCriterion }
*
*/
public ArrayOfAdGroupCriterion getAdGroupCriterions() {
return adGroupCriterions;
}
/**
* Sets the value of the adGroupCriterions property.
*
* @param value
* allowed object is
* {@link ArrayOfAdGroupCriterion }
*
*/
public void setAdGroupCriterions(ArrayOfAdGroupCriterion value) {
this.adGroupCriterions = value;
}
/**
* Gets the value of the criterionType property.
*
* @return
* possible object is
* {@link String }
*
*/
public Collection getCriterionType() {
return criterionType;
}
/**
* Sets the value of the criterionType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCriterionType(Collection value) {
this.criterionType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy