com.microsoft.bingads.v13.campaignmanagement.AudienceCriterion 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.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for AudienceCriterion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AudienceCriterion", propOrder = {
"audienceId",
"audienceType"
})
public class AudienceCriterion
extends Criterion
{
public AudienceCriterion() {
this.type = "AudienceCriterion";
}
@XmlElement(name = "AudienceId", nillable = true)
protected Long audienceId;
@XmlElement(name = "AudienceType", type = String.class, nillable = true)
@XmlJavaTypeAdapter(Adapter15 .class)
protected Collection audienceType;
/**
* Gets the value of the audienceId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getAudienceId() {
return audienceId;
}
/**
* Sets the value of the audienceId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setAudienceId(Long value) {
this.audienceId = value;
}
/**
* Gets the value of the audienceType property.
*
* @return
* possible object is
* {@link String }
*
*/
public Collection getAudienceType() {
return audienceType;
}
/**
* Sets the value of the audienceType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAudienceType(Collection value) {
this.audienceType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy