NAME

Net::API::Stripe::Payment::Source::ACHCreditTransfer - A Stripe ACH Credit Transfer Object

SYNOPSIS

    my $ach = $stripe->source->account_number({
        account_number => 1234567890,
        bank_name => 'Big Buck, Corp',
        fingerprint => 'hskfhskjhajl',
        routing_number => undef,
        swift_code => 'BIGBKS01',
    });

VERSION

    v0.100.0

DESCRIPTION

This module contains a snapshot of the transaction specific details of the ach_credit_transfer payment method.

This is instantiated by method ach_credit_transfer in module Net::API::Stripe::Payment::Method::Details and Net::API::Stripe::Payment::Source

CONSTRUCTOR

new( %ARG )

Creates a new Net::API::Stripe::Payment::Source::ACHCreditTransfer object. It may also take an hash like arguments, that also are method of the same name.

METHODS

account_number string

Account number to transfer funds to.

bank_name string

Name of the bank associated with the routing number.

routing_number string

Routing transit number for the bank account to transfer funds to.

swift_code string

SWIFT code of the bank associated with the routing number.

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/payment_methods/object

COPYRIGHT & LICENSE

Copyright (c) 2019-2020 DEGUEST Pte. Ltd.

You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.