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

com.microsoft.bingads.v10.bulk.entities.BulkAdGroupAgeTargetBid 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.23.2
Show newest version
package com.microsoft.bingads.v10.bulk.entities;

import com.microsoft.bingads.v10.bulk.BulkServiceManager;
import com.microsoft.bingads.v10.bulk.BulkFileReader;
import com.microsoft.bingads.v10.bulk.BulkFileWriter;
import com.microsoft.bingads.v10.bulk.BulkOperation;

/**
 * Represents one age target bid within an age target that is associated with an ad group.
 *
 * This class exposes the {@link BulkAgeTargetBid#setAgeTargetBid} and {@link BulkAgeTargetBid#getAgeTargetBid} methods
 * that can be used to read and write fields of the Ad Group Age Target record in a bulk file.
 *
 * 

* For more information, see Ad Group Age Target at * http://go.microsoft.com/fwlink/?LinkID=620260. *

* *

* One {@link BulkAdGroupAgeTarget} exposes a read only list of {@link BulkAdGroupAgeTargetBid}. * Each {@link BulkAdGroupAgeTargetBid} instance corresponds to one Ad Group Age Target record in the bulk file. * If you upload a {@link BulkAdGroupAgeTarget}, * then you are effectively replacing any existing bids for the corresponding age target. *

* * @see BulkServiceManager * @see BulkOperation * @see BulkFileReader * @see BulkFileWriter */ public class BulkAdGroupAgeTargetBid extends BulkAgeTargetBid { /** * Initializes a new instanced of the BulkAdGroupAgeTargetBid class. */ public BulkAdGroupAgeTargetBid() { super(new BulkAdGroupTargetIdentifier(BulkAdGroupAgeTargetBid.class)); } /** * Gets the identifier of the ad group that the target is associated. * *

* Corresponds to the 'Parent Id' field in the bulk file. *

*/ public Long getAdGroupId() { return getEntityId(); } /** * Sets the identifier of the ad group that the target is associated. * *

* Corresponds to the 'Parent Id' field in the bulk file. *

*/ public void setAdGroupId(Long adGroupId) { setEntityId(adGroupId); } /** * Gets the name of the ad group that the target is associated. * *

* Corresponds to the 'Ad Group' field in the bulk file. *

*/ public String getAdGroupName() { return getEntityName(); } /** * Sets the name of the ad group that the target is associated. * *

* Corresponds to the 'Ad Group' field in the bulk file. *

*/ public void setAdGroupName(String adGroupName) { setEntityName(adGroupName); } /** * Gets the name of the campaign that target is associated. * *

* Corresponds to the 'Campaign' field in the bulk file. *

*/ public String getCampaignName() { return getParentEntityName(); } /** * Sets the name of the campaign that target is associated. * *

* Corresponds to the 'Campaign' field in the bulk file. *

*/ public void setCampaignName(String campaignName) { setParentEntityName(campaignName); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy