FinancialConnectionBankAccountToken constructor
- @JsonSerializable(explicitToJson: true)
const
FinancialConnectionBankAccountToken(
{ - BankAccount? bankAccount,
- required bool livemode,
- String? id,
- required bool used,
- int? created,
})
Implementation
@JsonSerializable(explicitToJson: true)
const factory FinancialConnectionBankAccountToken({
/// Bamkaccount details
BankAccount? bankAccount,
/// When `true` the object exists in livemode and when false the object exists in test mode.
required bool livemode,
/// Unique id for this token.
String? id,
/// whether or not this token has been used
required bool used,
/// The Unix timestamp (in milliseconds) of the date this token was created
int? created,
}) = _FinancialConnectionBankAccountToken;