Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

InternalTransferDestination

Properties

Name Type Description Notes
type str
address InternalTransferAddress [optional]

Example

from fireblocks.models.internal_transfer_destination import InternalTransferDestination

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

# convert the object into a dict
internal_transfer_destination_dict = internal_transfer_destination_instance.to_dict()
# create an instance of InternalTransferDestination from a dict
internal_transfer_destination_from_dict = InternalTransferDestination.from_dict(internal_transfer_destination_dict)

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