VerifyMicroDepositsParams constructor
- @JsonSerializable(explicitToJson: true)
const
VerifyMicroDepositsParams(
{ - List<int>? amounts,
- String? descriptorCode,
})
Implementation
@JsonSerializable(explicitToJson: true)
const factory VerifyMicroDepositsParams({
/// The amounts of the microdeposits that are deposited on the account.
///
/// Make sure that the amount is exactly 2. When using this field make sure
/// [descriptorCode] is `null`.
List<int>? amounts,
/// The descriptor code that is part of the microdepot to the customer bank account.
///
/// When Using this field make sure [amounts] is `null`.
String? descriptorCode,
}) = _VerifyMicroDepositsParams;