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

NAME

Google::Adwords::Business - A Google Adwords Business object.

VERSION

This documentation refers to Google::Adwords::Business version 0.0.1

SYNOPSIS

    use Google::Adwords::AdService;
    use Google::Adwords::Business;

    # create the AdService object
    my $service = Google::Adwords::AdService->new();

    # need to login to the Adwords service
    $service->email($email_address)
            ->password($password)
            ->developerToken($developer_token)
            ->applicationToken($app_token);

    # if you have a MCC
    $service->clientEmail($client_email);
    # or 
    $service->clientCustomerId($customerid);

    # find businesses
    my @businesses = $service->findBusinesses({
        name            => 'Google',
        address         => 'Street Address,
        countryCode     => 'US',
    });
    
    for (@businesses) {
        "Phone Number: " . $_->phoneNumber . "\n";
    }

DESCRIPTION

This object should be used with the AdService API calls

METHODS

Accessors

* address

* city

* countryCode

* key

* latitude

* longitude

* name

* phoneNumber

* postalCode

* region

* timestamp

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.