Increase.InboundRealTimePaymentsTransfers.InboundRealTimePaymentsTransfer (Increase v1.0.0)

Copy Markdown View Source

An Inbound Real-Time Payments Transfer is a Real-Time Payments transfer initiated outside of Increase to your account.

Fields

  • id - The inbound Real-Time Payments transfer's identifier.
  • account_id - The Account to which the transfer was sent.
  • account_number_id - The identifier of the Account Number to which this transfer was sent.
  • amount - The amount in USD cents.
  • confirmation - If your transfer is confirmed, this will contain details of the confirmation.
  • created_at - The ISO 8601 date and time at which the transfer was created.
  • creditor_name - The name the sender of the transfer specified as the recipient of the transfer.
  • currency - The ISO 4217 code of the transfer's currency. This will always be "USD" for a Real-Time Payments transfer.
  • debtor_account_number - The account number of the account that sent the transfer.
  • debtor_name - The name provided by the sender of the transfer.
  • debtor_routing_number - The routing number of the account that sent the transfer.
  • decline - If your transfer is declined, this will contain details of the decline.
  • status - The lifecycle status of the transfer.
  • transaction_identification - The Real-Time Payments network identification of the transfer.
  • type - A constant representing the object's type. For this resource it will always be inbound_real_time_payments_transfer.
  • unstructured_remittance_information - Additional information included with the transfer.

Summary

Types

t()

@type t() ::
  %Increase.InboundRealTimePaymentsTransfers.InboundRealTimePaymentsTransfer{
    account_id: String.t(),
    account_number_id: String.t(),
    amount: integer(),
    confirmation:
      Increase.InboundRealTimePaymentsTransfers.InboundRealTimePaymentsTransfer.Confirmation.t()
      | nil,
    created_at: DateTime.t(),
    creditor_name: String.t(),
    currency: String.t(),
    debtor_account_number: String.t(),
    debtor_name: String.t(),
    debtor_routing_number: String.t(),
    decline:
      Increase.InboundRealTimePaymentsTransfers.InboundRealTimePaymentsTransfer.Decline.t()
      | nil,
    id: String.t(),
    status: String.t(),
    transaction_identification: String.t(),
    type: String.t(),
    unstructured_remittance_information: String.t() | nil
  }