The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::API::Stripe::Treasury::FinancialAccountFeatures - The FinancialAccount Feature object

SYNOPSIS

VERSION

    v0.1.0

DESCRIPTION

Encodes whether a FinancialAccount has access to a particular Feature, with a status enum and associated status_details. Stripe or the platform can control Features via the requested field.

METHODS

object string

String representing the object's type. Objects of the same type share the same value.

card_issuing object

Contains a Feature encoding the FinancialAccount's ability to be used with the Issuing product, including attaching cards to and drawing funds from.

This is a Net::API::Stripe::Connect::Account::Capability object.

deposit_insurance object

Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.

This is a Net::API::Stripe::Connect::Account::Capability object.

financial_addresses hash

Contains Features that add FinancialAddresses to the FinancialAccount.

It has the following properties:

aba hash

Adds an ABA FinancialAddress to the FinancialAccount.

When expanded, this is a Net::API::Stripe::Connect::Account::Capability object.

inbound_transfers hash

Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.

It has the following properties:

ach hash

Enables ACH Debits via the InboundTransfers API.

When expanded, this is a Net::API::Stripe::Connect::Account::Capability object.

intra_stripe_flows object

Represents the ability for this FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).

This is a Net::API::Stripe::Connect::Account::Capability object.

outbound_payments hash

Contains Features related to initiating money movement out of the FinancialAccount to someone else's bucket of money.

It has the following properties:

ach hash

Enables ACH transfers via the OutboundPayments API.

When expanded, this is a Net::API::Stripe::Connect::Account::Capability object.

us_domestic_wire hash

Enables US domestic wire tranfers via the OutboundPayments API.

When expanded, this is a Net::API::Stripe::Connect::Account::Capability object.

outbound_transfers hash

Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.

It has the following properties:

ach hash

Enables ACH transfers via the OutboundTransfers API.

When expanded, this is a Net::API::Stripe::Connect::Account::Capability object.

us_domestic_wire hash

Enables US domestic wire tranfers via the OutboundTransfers API.

When expanded, this is a Net::API::Stripe::Connect::Account::Capability object.

API SAMPLE

[ { "card_issuing" : { "requested" : 1, "status" : "active", "status_details" : [] }, "deposit_insurance" : { "requested" : 1, "status" : "active", "status_details" : [] }, "financial_addresses" : { "aba" : { "requested" : 1, "status" : "active", "status_details" : [] } }, "inbound_transfers" : { "ach" : { "requested" : 1, "status" : "active", "status_details" : [] } }, "intra_stripe_flows" : { "requested" : 1, "status" : "active", "status_details" : [] }, "object" : "treasury.financial_account_features", "outbound_payments" : { "ach" : { "requested" : 1, "status" : "active", "status_details" : [] }, "us_domestic_wire" : { "requested" : 1, "status" : "active", "status_details" : [] } }, "outbound_transfers" : { "ach" : { "requested" : 1, "status" : "active", "status_details" : [] }, "us_domestic_wire" : { "requested" : 1, "status" : "active", "status_details" : [] } } } ]

HISTORY

v0.1.0

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation

COPYRIGHT & LICENSE

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

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