Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 986 Bytes

File metadata and controls

30 lines (21 loc) · 986 Bytes

InteracDestination

Properties

Name Type Description Notes
type str
address InteracAddress

Example

from fireblocks.models.interac_destination import InteracDestination

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

# convert the object into a dict
interac_destination_dict = interac_destination_instance.to_dict()
# create an instance of InteracDestination from a dict
interac_destination_from_dict = InteracDestination.from_dict(interac_destination_dict)

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