VerifyMicroDepositsParams constructor

  1. @JsonSerializable(explicitToJson: true)
const VerifyMicroDepositsParams({
  1. List<int>? amounts,
  2. 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;