| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | ||
| address | USWireAddress |
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)