Increase.WireTransfers.WireTransfer.Reversal (Increase v1.0.0)

Copy Markdown View Source

If your transfer is reversed, this will contain details of the reversal.

Fields

  • amount - The amount that was reversed in USD cents.
  • created_at - The ISO 8601 date and time at which the reversal was created.
  • debtor_routing_number - The debtor's routing number.
  • description - The description on the reversal message from Fedwire, set by the reversing bank.
  • input_cycle_date - The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00 PM Eastern Time on the evening before the cycle date.
  • input_message_accountability_data - The Fedwire transaction identifier.
  • input_sequence_number - The Fedwire sequence number.
  • input_source - The Fedwire input source identifier.
  • instruction_identification - The sending bank's identifier for the reversal.
  • return_reason_additional_information - Additional information about the reason for the reversal.
  • return_reason_code - A code provided by the sending bank giving a reason for the reversal. The common return reason codes are [documented here].
  • return_reason_code_description - An Increase-generated description of the return_reason_code.
  • transaction_id - The ID for the Transaction associated with the transfer reversal.
  • wire_transfer_id - The ID for the Wire Transfer that is being reversed.

Summary

Types

t()

@type t() :: %Increase.WireTransfers.WireTransfer.Reversal{
  amount: integer(),
  created_at: DateTime.t(),
  debtor_routing_number: String.t() | nil,
  description: String.t(),
  input_cycle_date: Date.t(),
  input_message_accountability_data: String.t(),
  input_sequence_number: String.t(),
  input_source: String.t(),
  instruction_identification: String.t() | nil,
  return_reason_additional_information: String.t() | nil,
  return_reason_code: String.t() | nil,
  return_reason_code_description: String.t() | nil,
  transaction_id: String.t(),
  wire_transfer_id: String.t()
}