FinancialConnectionsAccount constructor

const FinancialConnectionsAccount({
  1. BankConnectionsResourceAccountholder? accountHolder,
  2. BankConnectionsResourceBalance? balance,
  3. BankConnectionsResourceBalanceRefresh? balanceRefresh,
  4. required FinancialConnectionsAccountCategory category,
  5. required DateTime created,
  6. String? displayName,
  7. required String id,
  8. required String institutionName,
  9. String? last4,
  10. required bool livemode,
  11. FinancialConnectionsAccountOwnershipOrId? ownership,
  12. BankConnectionsResourceOwnershipRefresh? ownershipRefresh,
  13. List<FinancialConnectionsAccountPermissionsItem>? permissions,
  14. required FinancialConnectionsAccountStatus status,
  15. required FinancialConnectionsAccountSubcategory subcategory,
  16. List<String>? subscriptions,
  17. required List<FinancialConnectionsAccountSupportedPaymentMethodTypesItem> supportedPaymentMethodTypes,
  18. BankConnectionsResourceTransactionRefresh? transactionRefresh,
})

BankConnectionsResourceLinkedAccount

A Financial Connections Account represents an account that exists outside of Stripe, to which you have been granted some degree of access.

Implementation

const FinancialConnectionsAccount({
  this.accountHolder,
  this.balance,
  this.balanceRefresh,
  required this.category,
  required this.created,
  this.displayName,
  required this.id,
  required this.institutionName,
  this.last4,
  required this.livemode,
  this.ownership,
  this.ownershipRefresh,
  this.permissions,
  required this.status,
  required this.subcategory,
  this.subscriptions,
  required this.supportedPaymentMethodTypes,
  this.transactionRefresh,
});