Name | Type | Description | Notes |
---|---|---|---|
account_id | str | ||
account_type | AccountType | ||
one_time_address | str | ||
tag | str | [optional] |
from fireblocks.models.destination import Destination
# TODO update the JSON string below
json = "{}"
# create an instance of Destination from a JSON string
destination_instance = Destination.from_json(json)
# print the JSON string representation of the object
print(Destination.to_json())
# convert the object into a dict
destination_dict = destination_instance.to_dict()
# create an instance of Destination from a dict
destination_from_dict = Destination.from_dict(destination_dict)