AccountSettings class final

Options for customizing how the account functions within Stripe.

Constructors

AccountSettings({AccountBacsDebitPaymentsSettings? bacsDebitPayments, required AccountBrandingSettings branding, AccountCardIssuingSettings? cardIssuing, required AccountCardPaymentsSettings cardPayments, required AccountDashboardSettings dashboard, AccountInvoicesSettings? invoices, required AccountPaymentsSettings payments, AccountPayoutSettings? payouts, AccountSepaDebitPaymentsSettings? sepaDebitPayments, AccountTreasurySettings? treasury})
Options for customizing how the account functions within Stripe.
const
AccountSettings.fromJson(Object? json)
factory

Properties

bacsDebitPayments → AccountBacsDebitPaymentsSettings?
final
branding → AccountBrandingSettings
final
cardIssuing → AccountCardIssuingSettings?
final
cardPayments → AccountCardPaymentsSettings
final
dashboard → AccountDashboardSettings
final
hashCode → int
The hash code for this object.
no setterinherited
invoices → AccountInvoicesSettings?
final
payments → AccountPaymentsSettings
final
payouts → AccountPayoutSettings?
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
sepaDebitPayments → AccountSepaDebitPaymentsSettings?
final
treasury → AccountTreasurySettings?
final

Methods

encodeWith<V>(Encoder<V> encoder) → V
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, Object?>
toString() → String
A string representation of this object.
override

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

encode<V>(AccountSettings instance, Encoder<V> encoder) → V