Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

Net::API::Stripe::Connect::Account::Settings - A Stripe Account Settings Object

SYNOPSIS

my $settings = $stripe->account->settings({
branding => $branding_object,
card_payments => $card_payments_object,
dashboard => $dashboard_object,
payments => $payments_object,
payouts => $payouts_object,
});

VERSION

v0.102.0

DESCRIPTION

Options for customizing how the account functions within Stripe.

This is instantiated by method settings from module Net::API::Stripe::Connect::Account

CONSTRUCTOR

new( %ARG )

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

METHODS

bacs_debit_payments object

Settings specific to Bacs Direct Debit on the account.

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

branding hash

Settings used to apply the account’s branding to email receipts, invoices, Checkout, and other products.

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

card_issuing object

Settings specific to the account's use of the Card Issuing product.

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

card_payments hash

Settings specific to card charging on the account.

This is a Net::API::Stripe::Connect::Account::Settings::CardPayments object.

dashboard hash

Settings used to configure the account within the Stripe dashboard.

This is a Net::API::Stripe::Connect::Account::Settings::Dashboard object.

payments hash

Settings that apply across payment methods for charging on the account.

This is a Net::API::Stripe::Connect::Account::Settings::Payments object.

payouts hash

Settings specific to the account’s payouts. This is a Net::API::Stripe::Connect::Account::Settings::Payouts object.

sepa_debit_payments hash

Settings specific to SEPA Direct Debit on the account.

It has the following properties:

creditor_id string

SEPA creditor identifier that identifies the company making the payment.

API SAMPLE

{
"id": "acct_fake123456789",
"object": "account",
"business_profile": {
"mcc": null,
"name": "My Shop, Inc",
"product_description": "Great products shipping all over the world",
"support_address": {
"city": "Tokyo",
"country": "JP",
"line1": "1-2-3 Kudan-minami, Chiyoda-ku",
"line2": "",
"postal_code": "100-0012",
"state": ""
},
"support_email": "billing@example.com",
"support_phone": "+81312345678",
"support_url": "",
},
"business_type": "company",
"capabilities": {
"card_payments": "active"
},
"charges_enabled": true,
"country": "JP",
"default_currency": "jpy",
"details_submitted": true,
"email": "tech@example.com",
"metadata": {},
"payouts_enabled": true,
"settings": {
"branding": {
"icon": "file_fake123456789",
"logo": null,
"primary_color": "#0e77ca"
},
"card_payments": {
"decline_on": {
"avs_failure": false,
"cvc_failure": false
},
"statement_descriptor_prefix": null
},
"dashboard": {
"display_name": "myshop-inc",
"timezone": "Asia/Tokyo"
},
"payments": {
"statement_descriptor": "MYSHOP, INC",
"statement_descriptor_kana": "マイショップインク",
"statement_descriptor_kanji": "マイショップインク"
},
"payouts": {
"debit_negative_balances": true,
"schedule": {
"delay_days": 4,
"interval": "weekly",
"weekly_anchor": "thursday"
},
"statement_descriptor": null
}
},
"type": "standard"
}

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/accounts/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.