Hi Robert,
You could look for BiddingStrategyConfiguration.biddingStrategyType to
identify the bid type. See
https://developers.google.com/adwords/api/docs/reference/v201302/AdGroupService.BiddingStrategyConfiguration#biddingStrategyType
for
details.
Cheers,
Anash P. Oommen,
AdWords API Advis
Hi Robert,
It was replaced with BiddingStrategyConfiguration, see:
https://developers.google.com/adwords/api/docs/reference/v201302/AdGroupService.BiddingStrategyConfiguration
and the bidding guide:
https://developers.google.com/adwords/api/docs/guides/bidding
-Danial, AdWords API Team.
AdGroupBids no longer exists in version 201302.
What would be the best way to port over the following code to v201302?
// download ad groups for this campaigns
List adGroups = getAllAdGroups(campaign.getId());
for (AdGroup adGroup : adGroups) {
String adGroupId = Long.toString(adGroup.getId());
A