The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Google::Adwords::ConversionOptimizerSettings - A Google Adwords ConversionOptimizerSettings Object

VERSION

This documentation refers to Google::Adwords::ConversionOptimizerSettings version 0.1

SYNOPSIS

    # Create the Campaign object
    my $campaign = Google::Adwords::Campaign->new();

    # Campaign Details
    $campaign->name('Campaign with an Ad Schedule');
    $campaign->dailyBudget(100000);
    $campaign->languageTargeting({
        languages => 'en',
    });

    # BudgetOptimizerSettings object
    my $budget_optimizer = Google::Adwords::BudgetOptimizerSettings->new;
    $budget_optimizer->bidCeiling(200000);
    $budget_optimizer->enabled(1);

    # Associate the budget optimizer with the Campaign
    $campaign->budgetOptimizerSettings($budget_optimizer);


  

DESCRIPTION

This object should be used with the CampaignService API calls

METHODS

Mutators (read/write)

* bidCeiling

* enabled

* takeOnOptimizedBids

SEE ALSO

AUTHOR

Rohan Almeida <rohan@almeida.in>

LICENSE AND COPYRIGHT

Copyright (c) 2006 Rohan Almeida <rohan@almeida.in>. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.