com.microsoft.bingads.v13.campaignmanagement.CombinedList Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import java.util.Collections;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CombinedList complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CombinedList", propOrder = {
"combinationRules"
})
public class CombinedList
extends Audience
{
public CombinedList() {
this.type = Collections.singletonList(AudienceType.fromValue("CombinedList"));
}
@XmlElement(name = "CombinationRules", nillable = true)
protected ArrayOfCombinationRule combinationRules;
/**
* Gets the value of the combinationRules property.
*
* @return
* possible object is
* {@link ArrayOfCombinationRule }
*
*/
public ArrayOfCombinationRule getCombinationRules() {
return combinationRules;
}
/**
* Sets the value of the combinationRules property.
*
* @param value
* allowed object is
* {@link ArrayOfCombinationRule }
*
*/
public void setCombinationRules(ArrayOfCombinationRule value) {
this.combinationRules = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy