All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v13.reporting.ReportRequest Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.22.1
Show newest version

package com.microsoft.bingads.v13.reporting;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ReportRequest complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ReportRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ExcludeColumnHeaders" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="ExcludeReportFooter" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="ExcludeReportHeader" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="Format" type="{https://bingads.microsoft.com/Reporting/v13}ReportFormat" minOccurs="0"/>
 *         <element name="FormatVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ReportName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ReturnOnlyCompleteData" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReportRequest", propOrder = { "excludeColumnHeaders", "excludeReportFooter", "excludeReportHeader", "format", "formatVersion", "reportName", "returnOnlyCompleteData" }) @XmlSeeAlso({ SearchCampaignChangeHistoryReportRequest.class, UserLocationPerformanceReportRequest.class, DSACategoryPerformanceReportRequest.class, ConversionPerformanceReportRequest.class, NegativeKeywordConflictReportRequest.class, AgeGenderAudienceReportRequest.class, GoalsAndFunnelsReportRequest.class, ProductPartitionUnitPerformanceReportRequest.class, DSAAutoTargetPerformanceReportRequest.class, AdExtensionDetailReportRequest.class, ProductMatchCountReportRequest.class, AccountPerformanceReportRequest.class, AdExtensionByAdReportRequest.class, ProductSearchQueryPerformanceReportRequest.class, AdDynamicTextPerformanceReportRequest.class, KeywordPerformanceReportRequest.class, ProfessionalDemographicsAudienceReportRequest.class, ProductNegativeKeywordConflictReportRequest.class, DSASearchQueryPerformanceReportRequest.class, AdExtensionByKeywordReportRequest.class, DestinationUrlPerformanceReportRequest.class, ShareOfVoiceReportRequest.class, PublisherUsagePerformanceReportRequest.class, CallDetailReportRequest.class, CampaignPerformanceReportRequest.class, ProductDimensionPerformanceReportRequest.class, GeographicPerformanceReportRequest.class, ProductPartitionPerformanceReportRequest.class, SearchQueryPerformanceReportRequest.class, AdPerformanceReportRequest.class, BudgetSummaryReportRequest.class, AudiencePerformanceReportRequest.class, AdGroupPerformanceReportRequest.class }) public class ReportRequest { @XmlElement(name = "ExcludeColumnHeaders", nillable = true) protected Boolean excludeColumnHeaders; @XmlElement(name = "ExcludeReportFooter", nillable = true) protected Boolean excludeReportFooter; @XmlElement(name = "ExcludeReportHeader", nillable = true) protected Boolean excludeReportHeader; @XmlElement(name = "Format", nillable = true) @XmlSchemaType(name = "string") protected ReportFormat format; @XmlElement(name = "FormatVersion", nillable = true) protected String formatVersion; @XmlElement(name = "ReportName", nillable = true) protected String reportName; @XmlElement(name = "ReturnOnlyCompleteData", nillable = true) protected Boolean returnOnlyCompleteData; /** * Gets the value of the excludeColumnHeaders property. * * @return * possible object is * {@link Boolean } * */ public Boolean getExcludeColumnHeaders() { return excludeColumnHeaders; } /** * Sets the value of the excludeColumnHeaders property. * * @param value * allowed object is * {@link Boolean } * */ public void setExcludeColumnHeaders(Boolean value) { this.excludeColumnHeaders = value; } /** * Gets the value of the excludeReportFooter property. * * @return * possible object is * {@link Boolean } * */ public Boolean getExcludeReportFooter() { return excludeReportFooter; } /** * Sets the value of the excludeReportFooter property. * * @param value * allowed object is * {@link Boolean } * */ public void setExcludeReportFooter(Boolean value) { this.excludeReportFooter = value; } /** * Gets the value of the excludeReportHeader property. * * @return * possible object is * {@link Boolean } * */ public Boolean getExcludeReportHeader() { return excludeReportHeader; } /** * Sets the value of the excludeReportHeader property. * * @param value * allowed object is * {@link Boolean } * */ public void setExcludeReportHeader(Boolean value) { this.excludeReportHeader = value; } /** * Gets the value of the format property. * * @return * possible object is * {@link ReportFormat } * */ public ReportFormat getFormat() { return format; } /** * Sets the value of the format property. * * @param value * allowed object is * {@link ReportFormat } * */ public void setFormat(ReportFormat value) { this.format = value; } /** * Gets the value of the formatVersion property. * * @return * possible object is * {@link String } * */ public String getFormatVersion() { return formatVersion; } /** * Sets the value of the formatVersion property. * * @param value * allowed object is * {@link String } * */ public void setFormatVersion(String value) { this.formatVersion = value; } /** * Gets the value of the reportName property. * * @return * possible object is * {@link String } * */ public String getReportName() { return reportName; } /** * Sets the value of the reportName property. * * @param value * allowed object is * {@link String } * */ public void setReportName(String value) { this.reportName = value; } /** * Gets the value of the returnOnlyCompleteData property. * * @return * possible object is * {@link Boolean } * */ public Boolean getReturnOnlyCompleteData() { return returnOnlyCompleteData; } /** * Sets the value of the returnOnlyCompleteData property. * * @param value * allowed object is * {@link Boolean } * */ public void setReturnOnlyCompleteData(Boolean value) { this.returnOnlyCompleteData = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy