com.microsoft.bingads.v13.reporting.NegativeKeywordConflictReportRequest Maven / Gradle / Ivy
package com.microsoft.bingads.v13.reporting;
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 NegativeKeywordConflictReportRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NegativeKeywordConflictReportRequest", propOrder = {
"columns",
"filter",
"scope"
})
public class NegativeKeywordConflictReportRequest
extends ReportRequest
{
public NegativeKeywordConflictReportRequest() {
this.type = "NegativeKeywordConflictReportRequest";
}
@XmlElement(name = "Columns", required = true, nillable = true)
protected ArrayOfNegativeKeywordConflictReportColumn columns;
@XmlElement(name = "Filter", nillable = true)
protected NegativeKeywordConflictReportFilter filter;
@XmlElement(name = "Scope", required = true, nillable = true)
protected AccountThroughAdGroupReportScope scope;
/**
* Gets the value of the columns property.
*
* @return
* possible object is
* {@link ArrayOfNegativeKeywordConflictReportColumn }
*
*/
public ArrayOfNegativeKeywordConflictReportColumn getColumns() {
return columns;
}
/**
* Sets the value of the columns property.
*
* @param value
* allowed object is
* {@link ArrayOfNegativeKeywordConflictReportColumn }
*
*/
public void setColumns(ArrayOfNegativeKeywordConflictReportColumn value) {
this.columns = value;
}
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link NegativeKeywordConflictReportFilter }
*
*/
public NegativeKeywordConflictReportFilter getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link NegativeKeywordConflictReportFilter }
*
*/
public void setFilter(NegativeKeywordConflictReportFilter value) {
this.filter = value;
}
/**
* Gets the value of the scope property.
*
* @return
* possible object is
* {@link AccountThroughAdGroupReportScope }
*
*/
public AccountThroughAdGroupReportScope getScope() {
return scope;
}
/**
* Sets the value of the scope property.
*
* @param value
* allowed object is
* {@link AccountThroughAdGroupReportScope }
*
*/
public void setScope(AccountThroughAdGroupReportScope value) {
this.scope = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy