com.microsoft.bingads.reporting.ReportRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
package com.microsoft.bingads.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="Format" type="{https://bingads.microsoft.com/Reporting/v9}ReportFormat" minOccurs="0"/>
* <element name="Language" type="{https://bingads.microsoft.com/Reporting/v9}ReportLanguage" 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 = {
"format",
"language",
"reportName",
"returnOnlyCompleteData"
})
@XmlSeeAlso({
SearchCampaignChangeHistoryReportRequest.class,
ConversionPerformanceReportRequest.class,
NegativeKeywordConflictReportRequest.class,
GoalsAndFunnelsReportRequest.class,
GeoLocationPerformanceReportRequest.class,
RichAdComponentPerformanceReportRequest.class,
ProductPartitionUnitPerformanceReportRequest.class,
TrafficSourcesReportRequest.class,
AdExtensionDetailReportRequest.class,
AccountPerformanceReportRequest.class,
GeographicalLocationReportRequest.class,
AdExtensionByAdReportRequest.class,
SitePerformanceReportRequest.class,
ProductOfferPerformanceReportRequest.class,
AdDynamicTextPerformanceReportRequest.class,
KeywordPerformanceReportRequest.class,
AdExtensionByKeywordReportRequest.class,
AdExtensionDimensionReportRequest.class,
DestinationUrlPerformanceReportRequest.class,
ShareOfVoiceReportRequest.class,
PublisherUsagePerformanceReportRequest.class,
CallDetailReportRequest.class,
TacticChannelReportRequest.class,
CampaignPerformanceReportRequest.class,
AgeGenderDemographicReportRequest.class,
ProductDimensionPerformanceReportRequest.class,
ProductPartitionPerformanceReportRequest.class,
SearchQueryPerformanceReportRequest.class,
ProductTargetPerformanceReportRequest.class,
BrandZonePerformanceReportRequest.class,
AdPerformanceReportRequest.class,
BudgetSummaryReportRequest.class,
AudiencePerformanceReportRequest.class,
AdGroupPerformanceReportRequest.class
})
public class ReportRequest {
@XmlElement(name = "Format", nillable = true)
@XmlSchemaType(name = "string")
protected ReportFormat format;
@XmlElement(name = "Language", nillable = true)
@XmlSchemaType(name = "string")
protected ReportLanguage language;
@XmlElement(name = "ReportName", nillable = true)
protected String reportName;
@XmlElement(name = "ReturnOnlyCompleteData", nillable = true)
protected Boolean returnOnlyCompleteData;
/**
* 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 language property.
*
* @return
* possible object is
* {@link ReportLanguage }
*
*/
public ReportLanguage getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link ReportLanguage }
*
*/
public void setLanguage(ReportLanguage value) {
this.language = 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 - 2025 Weber Informatics LLC | Privacy Policy