Increase.CheckDeposits.CheckDeposit.DepositRejection (Increase v1.0.0)

Copy Markdown View Source

If your deposit is rejected by Increase, this will contain details as to why it was rejected.

Fields

  • amount - The rejected amount in the minor unit of check's currency. For dollars, for example, this is cents.
  • check_deposit_id - The identifier of the Check Deposit that was rejected.
  • currency - The ISO 4217 code for the check's currency.
  • declined_transaction_id - The identifier of the associated declined transaction.
  • reason - Why the check deposit was rejected.
  • rejected_at - The ISO 8601 date and time at which the check deposit was rejected.

Summary

Types

t()

@type t() :: %Increase.CheckDeposits.CheckDeposit.DepositRejection{
  amount: integer(),
  check_deposit_id: String.t(),
  currency: String.t(),
  declined_transaction_id: String.t(),
  reason: String.t(),
  rejected_at: DateTime.t()
}