com.microsoft.bingads.v13.bulk.SubmitDownloadParameters Maven / Gradle / Ivy
package com.microsoft.bingads.v13.bulk;
import java.util.Calendar;
import java.util.Collection;
import java.util.List;
/**
* Describes the service request parameters such as the type of entities and data scope that you want to download.
*/
public class SubmitDownloadParameters {
private Collection dataScope;
private DownloadFileType fileType;
private List campaignIds;
private Calendar lastSyncTimeInUTC;
private ArrayOfDownloadEntity downloadEntities;
/**
* Gets the scope or types of data to download. For possible values, see
* DataScope Value Set at
* https://go.microsoft.com/fwlink/?LinkId=846127
*/
public Collection getDataScope() {
return dataScope;
}
public void setDataScope(Collection value) {
dataScope = value;
}
/**
* Gets the type of entities to download.
*/
public ArrayOfDownloadEntity getDownloadEntities() {
return downloadEntities;
}
/**
* Sets the type of entities to download.
*/
public void setDownloadEntities(ArrayOfDownloadEntity value) {
downloadEntities = value;
}
/**
* Gets the campaigns to download. You can specify a maximum of 1,000 campaigns.
* The campaigns that you specify must belong to the same account.
*/
public List getCampaignIds() {
return this.campaignIds;
}
/**
* Sets the campaigns to download. You can specify a maximum of 1,000 campaigns.
* The campaigns that you specify must belong to the same account.
*/
public void setCampaignIds(List campaignIds) {
this.campaignIds = campaignIds;
}
/**
* Gets the extension type of the downloaded file. For possible values, see
* DownloadFileType Value Set at
* https://go.microsoft.com/fwlink/?LinkId=846127
*/
public DownloadFileType getFileType() {
return fileType;
}
/**
* Sets the extension type of the downloaded file. For possible values, see
* DownloadFileType Value Set at
* https://go.microsoft.com/fwlink/?LinkId=846127
*/
public void setFileType(DownloadFileType fileType) {
this.fileType = fileType;
}
/**
* Gets the last time that you requested a download. The date and time is
* expressed in Coordinated Universal Time (UTC). Typically, you request a
* full download the first time you call the operation by setting this
* element to null. On all subsequent calls you set the last sync time to
* the time stamp of the previous download. The download file contains the
* time stamp of the download in the SyncTime column of the Account record.
* Use the time stamp to set LastSyncTimeInUTC the next time that you
* request a download. If you specify the last sync time, only those
* entities that have changed (been updated or deleted) since the specified
* date and time will be downloaded. However, if the campaign data has not
* been previously downloaded, the operation performs a full download.
*/
public Calendar getLastSyncTimeInUTC() {
return lastSyncTimeInUTC;
}
/**
* Sets the last time that you requested a download. The date and time is
* expressed in Coordinated Universal Time (UTC). Typically, you request a
* full download the first time you call the operation by setting this
* element to null. On all subsequent calls you set the last sync time to
* the time stamp of the previous download. The download file contains the
* time stamp of the download in the SyncTime column of the Account record.
* Use the time stamp to set LastSyncTimeInUTC the next time that you
* request a download. If you specify the last sync time, only those
* entities that have changed (been updated or deleted) since the specified
* date and time will be downloaded. However, if the campaign data has not
* been previously downloaded, the operation performs a full download.
*/
public void setLastSyncTimeInUTC(Calendar lastSyncTimeInUTC) {
this.lastSyncTimeInUTC = lastSyncTimeInUTC;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy