com.microsoft.bingads.v10.bulk.entities.BulkCampaignNegativeLocationTarget Maven / Gradle / Ivy
Show all versions of microsoft.bingads Show documentation
package com.microsoft.bingads.v10.bulk.entities;
import com.microsoft.bingads.v10.bulk.BulkServiceManager;
import com.microsoft.bingads.v10.campaignmanagement.CityTargetBid;
import com.microsoft.bingads.v10.bulk.BulkFileReader;
import com.microsoft.bingads.v10.bulk.BulkFileWriter;
import com.microsoft.bingads.v10.bulk.BulkOperation;
/**
* Represents a negative location target that is associated with a campaign.
*
* This class exposes the
* {@link BulkLocationTargetWithStringLocation#getCityTarget},
* {@link BulkLocationTargetWithStringLocation#setCityTarget}
* {@link BulkLocationTargetWithStringLocation#getCountryTarget},
* {@link BulkLocationTargetWithStringLocation#setCountryTarget},
* {@link BulkLocationTargetWithStringLocation#getMetroAreaTarget},
* {@link BulkLocationTargetWithStringLocation#setMetroAreaTarget},
* {@link BulkLocationTargetWithStringLocation#getPostalCodeTarget},
* {@link BulkLocationTargetWithStringLocation#setPostalCodeTarget},
* {@link BulkLocationTargetWithStringLocation#getStateTarget},
* and {@link BulkLocationTargetWithStringLocation#setStateTarget} methods,
*
* that represent geographical location sub types.
* Each sub type can be read and written as fields of the Campaign Negative Location Target record in a bulk file.
*
*
* Each negative location sub type contains a list of bids. For example {@link BulkLocationTargetWithStringLocation#getCityTarget}
* contains a list of {@link CityTargetBid}. Each {@link CityTargetBid} instance
* corresponds to one Campaign Location Target record in the bulk file.
* If you upload a {@link BulkLocationTargetWithStringLocation#getCityTarget},
* then you are effectively replacing any existing city bids for the corresponding negative location target.
*
*
*
* The {@link BulkLocationTargetBidWithStringLocation#getLocationType} methods determines the geographical location sub type.
*
*
*
* For more information, see Campaign Negative Location Target at
* http://go.microsoft.com/fwlink/?LinkID=620244.
*
*
* @see BulkServiceManager
* @see BulkOperation
* @see BulkFileReader
* @see BulkFileWriter
*/
public class BulkCampaignNegativeLocationTarget extends BulkNegativeLocationTarget {
/**
* Initializes a new instanced of the BulkCampaignNegativeLocationTarget class.
*/
public BulkCampaignNegativeLocationTarget() {
super(BulkCampaignNegativeLocationTargetBid.class);
}
/**
* Gets the identifier of the campaign that the target is associated.
*
*
* Corresponds to the 'Parent Id' field in the bulk file.
*
*/
public Long getCampaignId() {
return getEntityId();
}
/**
* Sets the identifier of the campaign that the target is associated.
*
*
* Corresponds to the 'Parent Id' field in the bulk file.
*
*/
public void setCampaignId(Long campaignId) {
setEntityId(campaignId);
}
/**
* Gets the name of the campaign that target is associated.
*
*
* Corresponds to the 'Campaign' field in the bulk file.
*
*/
public String getCampaignName() {
return getEntityName();
}
/**
* Sets the name of the campaign that target is associated.
*
*
* Corresponds to the 'Campaign' field in the bulk file.
*
*/
public void setCampaignName(String campaignName) {
setEntityName(campaignName);
}
/**
* Reserved for internal use.
*/
@Override
BulkCampaignNegativeLocationTargetBid createBid() {
return new BulkCampaignNegativeLocationTargetBid();
}
}