com.microsoft.bingads.v13.campaignmanagement.DisclaimerSetting Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
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 DisclaimerSetting complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DisclaimerSetting", propOrder = {
"disclaimerAdsEnabled"
})
public class DisclaimerSetting
extends Setting
{
public DisclaimerSetting() {
this.type = "DisclaimerSetting";
}
@XmlElement(name = "DisclaimerAdsEnabled")
protected Boolean disclaimerAdsEnabled;
/**
* Gets the value of the disclaimerAdsEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getDisclaimerAdsEnabled() {
return disclaimerAdsEnabled;
}
/**
* Sets the value of the disclaimerAdsEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDisclaimerAdsEnabled(Boolean value) {
this.disclaimerAdsEnabled = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy