Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1012 Bytes

File metadata and controls

31 lines (22 loc) · 1012 Bytes

SwiftAddress

Properties

Name Type Description Notes
account_holder AccountHolderDetails
swift_code str
routing_number str Routing number identifying the bank account.

Example

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)

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