SyncteraRubySdk::IncomingWire

Properties

Name Type Description Notes
account_id String The internal account uuid representing the recipient of the wire. [optional]
amount Integer Transfer amount in cents ($100 would be 10000)
bank_id Integer ID of bank
bank_message String Information from the sending bank to the receiving bank. [optional]
creation_time Time [readonly]
currency String 3-character currency code [optional]
customer_id String The customer UUID representing the person initiating the Wire transfer [optional]
decline_reason String Description of the reason the transfer was declined [optional]
id String wire ID [readonly]
is_return Boolean Indicates if the wire is a return of an outgoing wire
originating_account_number String The account number representing the sender account. If the incoming wire is a return, it refers to the sender of the initial wire not the sender of the return.
partner_id Integer ID of partner [optional]
receiver Party
receiving_account_id String The internal Synctera account uuid representing the recipient of the wire. [optional]
receiving_account_number String The account number representing the recipient account. If the incoming wire is a return, it refers to the recipient of the initial wire not the destination of the return.
recipient_message String Information from the originator to the beneficiary (recipient). [optional]
return_data ReturnData [optional]
return_reason String The reason we are returning this wire. [optional]
sender Party
sender_reference_id String Sender's id associated with fedwire transfer [readonly]
status String The current status of the transfer [readonly]
transaction_id String ID of the resulting transaction resource [optional][readonly]
type_subtype String The fedwire label associated with the subtype code [optional]

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::IncomingWire.new(
  account_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
  amount: 10000,
  bank_id: null,
  bank_message: null,
  creation_time: 2010-05-06T12:23:34.321Z,
  currency: USD,
  customer_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
  decline_reason: null,
  id: null,
  is_return: null,
  originating_account_number: 1961234745,
  partner_id: null,
  receiver: null,
  receiving_account_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
  receiving_account_number: 1961234745,
  recipient_message: null,
  return_data: null,
  return_reason: null,
  sender: null,
  sender_reference_id: 9F564A6124E65,
  status: READY,
  transaction_id: null,
  type_subtype: BASIC_FUNDS_TRANSFER
)