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

NAME

Net::FreshBooks::API::Client::Contact - Provides FreshBooks Contact objects to Clients and Invoices

VERSION

version 0.24

SYNOPSIS

    my $fb = Net::FreshBooks::API->new(...);
    my $client = $fb->client->get({ client_id => $client_id });

    foreach my $contact ( @{$invoice->contacts} ) {
        print $contact->first_name, "\n";
    }

DESCRIPTION

Objects support the following methods: contact_id, username, first_name, last_name, email, phone1 and phone2.

AUTHORS

  • Edmund von der Burg <evdb@ecclestoad.co.uk>

  • Olaf Alders <olaf@wundercounter.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Edmund von der Burg & Olaf Alders.

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