Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

USWireAddress

Properties

Name Type Description Notes
account_holder AccountHolderDetails
bank_name str Name of the bank. [optional]
bank_account_number str The bank account number for the wire transfer.
routing_number str Routing number identifying the bank account.
bank_address BankAddress [optional]

Example

from fireblocks.models.us_wire_address import USWireAddress

# TODO update the JSON string below
json = "{}"
# create an instance of USWireAddress from a JSON string
us_wire_address_instance = USWireAddress.from_json(json)
# print the JSON string representation of the object
print(USWireAddress.to_json())

# convert the object into a dict
us_wire_address_dict = us_wire_address_instance.to_dict()
# create an instance of USWireAddress from a dict
us_wire_address_from_dict = USWireAddress.from_dict(us_wire_address_dict)

[Back to Model list] [Back to API list] [Back to README]