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

com.microsoft.bingads.v13.reporting.ReportingDownloadParameters 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 java.io.File;

/**
 * Describes the available parameters when performing a download, such as the type of result file directory and result name that you want to download. 
 */
public class ReportingDownloadParameters {

	/**
	 * The base class of ReportRequest is to represent the type of reporting request.
	 */
    private ReportRequest reportRequest;
    
    private File resultFileDirectory;
    
    private String resultFileName;
    
    private boolean overwriteResultFile;

	/**
	 * @return the reportRequest
	 */
	public ReportRequest getReportRequest() {
		return reportRequest;
	}

	/**
	 * @param reportRequest the reportRequest to set
	 */
	public void setReportRequest(ReportRequest reportRequest) {
		this.reportRequest = reportRequest;
	}
	
	/**
	 * @return the resultFileDirectory
	 */
	public File getResultFileDirectory() {
		return resultFileDirectory;
	}

	/**
	 * @param resultFileDirectory the resultFileDirectory to set
	 */
	public void setResultFileDirectory(File resultFileDirectory) {
		this.resultFileDirectory = resultFileDirectory;
	}

	/**
	 * @return the resultFileName
	 */
	public String getResultFileName() {
		return resultFileName;
	}

	/**
	 * @param resultFileName the resultFileName to set
	 */
	public void setResultFileName(String resultFileName) {
		this.resultFileName = resultFileName;
	}

	/**
	 * @return the overwriteResultFile
	 */
	public boolean getOverwriteResultFile() {
		return overwriteResultFile;
	}

	/**
	 * @param overwriteResultFile the overwriteResultFile to set
	 */
	public void setOverwriteResultFile(boolean overwriteResultFile) {
		this.overwriteResultFile = overwriteResultFile;
	}
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy