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

package Net::FreshBooks::API::Client::Contact;
{
  $Net::FreshBooks::API::Client::Contact::VERSION = '0.23';
}

use Moose;
extends 'Net::FreshBooks::API::Base';

has $_ => ( is => _fields()->{$_}->{is} ) for sort keys %{ _fields() };

sub node_name { return 'contact' };

sub _fields {
    return {
        contact_id => { is => 'ro' },
        username   => { is => 'ro' },
        first_name => { is => 'ro' },
        last_name  => { is => 'ro' },
        email      => { is => 'ro' },
        phone1     => { is => 'ro' },
        phone2     => { is => 'ro' },
    };
}



__PACKAGE__->meta->make_immutable();

1;

# ABSTRACT: Provides FreshBooks Contact objects to Clients and Invoices


__END__
=pod

=head1 NAME

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

=head1 VERSION

version 0.23

=head1 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";
    }

=head1 DESCRIPTION

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

=head1 AUTHORS

=over 4

=item *

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

=item *

Olaf Alders <olaf@wundercounter.com>

=back

=head1 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.

=cut