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

NAME

Net::FreshBooks::API::Payment

VERSION

version 0.12

SYNOPSIS

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

payment->create

Create a new payment in the FreshBooks system

    my $payment = $fb->payment->create({...});

payment->update

Please see client->update for an example of how to use this method.

payment->get

    my $payment = $fb->payment->get({ payment_id => $payment_id });

payment->delete

    my $payment = $fb->payment->get({ payment_id => $payment_id });
    $payment->delete;

payment->list

Returns a Net::FreshBooks::API::Iterator object.

    my $payments = $fb->payment->list;
    while ( my $payment = $payments->list ) {
        print $payment->payment_id, "\n";
    }

DESCRIPTION

This class gives you object to FreshBooks payment information. Net::FreshBooks::API will construct this object for you.

AUTHOR

Olaf Alders <olaf@wundercounter.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 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.