SyncteraRubySdk::PatchAccountsRequestRoutingIdentifiers
Properties
| Name |
Type |
Description |
Notes |
| ach_routing_number |
String |
The routing number used for US ACH payments. On write, Synctera will store the entire routing number; on read, we only return the last 4 characters. |
[optional] |
| bank_name |
String |
The name of the bank managing the account |
[optional] |
| international_wire_details |
PatchInternationalWireDetails |
|
[optional] |
| wire_routing_number |
String |
The routing number used for domestic wire payments. On write, Synctera will store the entire routing number; on read, we only return the last 4 characters. |
[optional] |
Example
require 'synctera_ruby_sdk'
instance = SyncteraRubySdk::PatchAccountsRequestRoutingIdentifiers.new(
ach_routing_number: 756392185,
bank_name: Chase,
international_wire_details: null,
wire_routing_number: 952391102
)