SyncteraRubySdk::AchTransactionSimulationRequest

Properties

Name Type Description Notes
account_number String Number of the receiving account
amount Integer Amount to transfer in cents (e.g. 100 = $1).
dc_sign String The type of transaction (debit or credit) in relation to the receiving account. A credit is a transfer in and a debit is a transfer pulling money out of the receiving account.
effective_date Date Effective date of the transaction. Transactions with the current date or date in the past are posted immediately. Future-dated transactions are scheduled to be posted on the chosen date.

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::AchTransactionSimulationRequest.new(
  account_number: 123638791329,
  amount: 607,
  dc_sign: debit,
  effective_date: Fri Mar 18 03:00:00 EEST 2022
)