Hey Anash,

  This doesnt make a whole lot of sense but apparently creating an empty 
object and setting the fields, sets up the BiddingStrategyConfiguration 
object correctly

my $biddingStrategyConfiguration = 
Google::Ads::AdWords::v201302::BiddingStrategyConfiguration->new();
    
    $biddingStrategyConfiguration->set_biddingStrategyType("MANUAL_CPC");
    $biddingStrategyConfiguration->set_biddingScheme( 
Google::Ads::AdWords::v201302::ManualCpcBiddingScheme->new({
      enhancedCpcEnabled => 0,
    }));

  But if you try to set the field while simultaneously instantiating 
the BiddingStrategyConfiguration object, then 
the  BiddingStrategyConfiguration object is undefined
    
    my $biddingStrategyConfiguration2 = 
Google::Ads::AdWords::v201302::BiddingStrategyConfiguration->new(
        biddingStrategyType => "MANUAL_CPC",
        biddingScheme => 
Google::Ads::AdWords::v201302::ManualCpcBiddingScheme->new({
          enhancedCpcEnabled => 0,
        })
    );

What is going on here?

-Etienne

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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

--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to