| Name | Type | Description | Notes |
|---|---|---|---|
| account_holder | AccountHolderDetails | ||
| swift_code | str | ||
| routing_number | str | Routing number identifying the bank account. |
from fireblocks.models.swift_address import SwiftAddress
# TODO update the JSON string below
json = "{}"
# create an instance of SwiftAddress from a JSON string
swift_address_instance = SwiftAddress.from_json(json)
# print the JSON string representation of the object
print(SwiftAddress.to_json())
# convert the object into a dict
swift_address_dict = swift_address_instance.to_dict()
# create an instance of SwiftAddress from a dict
swift_address_from_dict = SwiftAddress.from_dict(swift_address_dict)