Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 966 Bytes

Destination.md

File metadata and controls

32 lines (23 loc) · 966 Bytes

Destination

Properties

Name Type Description Notes
account_id str
account_type AccountType
one_time_address str
tag str [optional]

Example

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)

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