Sha256: ba07d2f5666e10d59a57e3f350b6972e8c5e552b5225585147f6b29481ee35d0
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 KB
Contents
# SyncteraRubySdk::WireRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **amount** | **Integer** | Transfer amount in cents ($100 would be 10000) | | | **bank_message** | **String** | Instructions intended for the financial institutions that are processing the wire. | [optional] | | **currency** | **String** | 3-character currency code | | | **customer_id** | **String** | The customer UUID representing the person initiating the Wire transfer | | | **metadata** | **Object** | Additional transfer metadata structured as key-value pairs | [optional] | | **originating_account_id** | **String** | Sender account ID | | | **receiving_account_id** | **String** | The external account uuid representing the recipient of the wire. | | | **recipient_message** | **String** | Information from the originator to the beneficiary (recipient). | | ## Example ```ruby require 'synctera_ruby_sdk' instance = SyncteraRubySdk::WireRequest.new( amount: 10000, bank_message: null, currency: USD, customer_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96, metadata: null, originating_account_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96, receiving_account_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96, recipient_message: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
synctera_ruby_sdk-1.1.3 | docs/WireRequest.md |
synctera_ruby_sdk-1.1.2 | docs/WireRequest.md |
synctera_ruby_sdk-1.1.1 | docs/WireRequest.md |
synctera_ruby_sdk-1.0.0 | docs/WireRequest.md |