FinancialConnectionsAccountOwner constructor

const FinancialConnectionsAccountOwner({
  1. String? email,
  2. required String id,
  3. required String name,
  4. required String ownership,
  5. String? phone,
  6. String? rawAddress,
  7. DateTime? refreshedAt,
})

BankConnectionsResourceOwner

Describes an owner of an account.

Implementation

const FinancialConnectionsAccountOwner({
  this.email,
  required this.id,
  required this.name,
  required this.ownership,
  this.phone,
  this.rawAddress,
  this.refreshedAt,
});