Google::Adwords::GeoTarget - GeoTargeting options


Google-Adwords documentation Contained in the Google-Adwords distribution.

Index


Code Index:

NAME

Top

Google::Adwords::GeoTarget - GeoTargeting options

SYNOPSIS

Top

    use Google::Adwords::GeoTarget;
    use Google::Adwords::CountryTargets;

    # Set target countries as US and India
    my $geo_target = Google::Adwords::GeoTarget->new();
    my $targets = Google::Adwords::CountryTargets->new();
    $targets->countries([ 'US', 'IN' ]);
    $geo_target->countryTargets($targets);




METHODS

Top

Mutators (read/write)

* cityTargets - A Google::Adwords::CityTargets object

* countryTargets - A Google::Adwords::CountryTargets object

* metroTargets - A Google::Adwords::MetroTargets object

* proximityTargets - TODO

* regionTargets - A Google::Adwords::RegionTargets object

* targetAll - true/false

SEE ALSO

Top

* Google::Adwords::CityTargets
* Google::Adwords::CountryTargets
* Google::Adwords::MetroTargets
* Google::Adwords::RegionTargets

AUTHOR

Top

Rohan Almeida <rohan@almeida.in>

LICENSE AND COPYRIGHT

Top


Google-Adwords documentation Contained in the Google-Adwords distribution.

package Google::Adwords::GeoTarget;
use strict;
use warnings;

use version; our $VERSION = qv('0.0.1');

use base 'Google::Adwords::Data';

my @fields = qw/
    cityTargets
    countryTargets
    metroTargets
    proximityTargets
    regionTargets
    targetAll
    /;

__PACKAGE__->mk_accessors(@fields);

1;