Google::Adwords::Address - A Google Adwords Address object.


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

Index


Code Index:

NAME

Top

Google::Adwords::Address - A Google Adwords Address object.

VERSION

Top

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

SYNOPSIS

Top

    use Google::Adwords::Address;

    my $address = Google::Adwords::Address->new
            ->addressLine1('first street')
            ->city('Paris')
            ->companyName('My company')
            ->countryCode('FR')
            ->emailAddress('my@example.com');




DESCRIPTION

Top

This object should be used with the AccountService API calls

METHODS

Top

Mutators (read/write)

* addressLine1

* addressLine2

* city

* companyName

* countryCode

* emailAddress

* faxNumber

* name

* phoneNumber

* postalCode

* state

SEE ALSO

Top

* Google::Adwords::AccountService

AUTHOR

Top

Rohan Almeida <rohan@almeida.in>

LICENSE AND COPYRIGHT

Top


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

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

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

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

my @fields = qw/
    addressLine1
    addressLine2
    city
    companyName
    countryCode
    emailAddress
    faxNumber
    name
    phoneNumber
    postalCode
    state
    /;

__PACKAGE__->mk_accessors(@fields);

1;