Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 977 Bytes

File metadata and controls

30 lines (21 loc) · 977 Bytes

USWireDestination

Properties

Name Type Description Notes
type str
address USWireAddress

Example

from fireblocks.models.us_wire_destination import USWireDestination

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

# convert the object into a dict
us_wire_destination_dict = us_wire_destination_instance.to_dict()
# create an instance of USWireDestination from a dict
us_wire_destination_from_dict = USWireDestination.from_dict(us_wire_destination_dict)

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