An adwords campaign can be using one of 3 bidding strategies; Manual CPC, 
Conversion optimizer or Budget optimizer.   I am not sure what you mean by 
DCO?

When you get a campaign through CampaignService you can call 
*getBiddingStrategy() 
*on it to get the bidding strateg this camapign is using.  You can do 
something like this:

BiddingStrategy bs = campaign.getBiddingStrategy();
if (bs instanceof ManualCPC){....}
else if (bs instanceof BudgetOptimizer) {...}
else if (bs instanceof ConversionOptimizer) {...}

HTH

Oliver
                    


On Thursday, November 8, 2012 12:52:00 PM UTC, Eugene wrote:
>
> Hello.
>
> I want to retrieve campaigns data with CampaignService and cannot find 
> selector's field indicating whether a campaign in auto-optimized (DCO) 
> mode or standard one.
> How can I retrieve this campaign's attribute?
>
> Thank you.
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

Reply via email to