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

NAME

Net::Iugu::Transfers - Net::Iugu::Transfers - Methods to transfer money between accounts

VERSION

version 0.000001

SYNOPSIS

Implements the API calls to make transfers between Iugu accounts. It is used by the main module Net::Iugu and shouldn't be instantiated direclty.

    use Net::Iugu::Transfers;

    $transfers = Net::Iugu::Transfers->new(
        token => 'my_api_token'
    );

    my $res  = $transfers->transfer( $data );
    my $list = $transfers->list;

For a detailed reference of params and return values check the Official Documentation.

METHODS

transfer( $data )

Transfer an amount of money from your account to another account.

list()

Return a list of all transfers previously made.

AUTHOR

Blabos de Blebe <blabos@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Blabos de Blebe.

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