An Inbound FedNow Transfer is a FedNow transfer initiated outside of Increase to your account.
Fields
id- The inbound FedNow 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 FedNow 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_id- The identifier of the Transaction object created when the transfer was confirmed.type- A constant representing the object's type. For this resource it will always beinbound_fednow_transfer.unstructured_remittance_information- Additional information included with the transfer.
Summary
Types
@type t() :: %Increase.InboundFednowTransfers.InboundFednowTransfer{ account_id: String.t(), account_number_id: String.t(), amount: integer(), confirmation: Increase.InboundFednowTransfers.InboundFednowTransfer.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.InboundFednowTransfers.InboundFednowTransfer.Decline.t() | nil, id: String.t(), status: String.t(), transaction_id: String.t() | nil, type: String.t(), unstructured_remittance_information: String.t() | nil }