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

NAME

Net::API::Stripe::Payment::Source::ACHDebit - A Stripe ACH Debit Object

SYNOPSIS

    my $ach_debit = $stripe->source->ach_debit({
        account_holder_type => 'company',
        bank_name => 'Big Buck, Corp',
        country => 'us',
        fingerprint => 'hskfhskjhajl',
        last4 => 1234,
        routing_number => undef,
    });

VERSION

    v0.100.0

DESCRIPTION

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

This is instantiated by method ach_debit 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::ACHDebit object. It may also take an hash like arguments, that also are method of the same name.

METHODS

account_holder_type string

Type of entity that holds the account. This can be either individual or company.

bank_name string

Name of the bank associated with the bank account.

country string

Two-letter ISO code representing the country the bank account is located in.

fingerprint string

Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.

last4 string

Last four digits of the bank account number.

routing_number string

Routing transit number of the bank account.

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.