Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

File metadata and controls

30 lines (21 loc) · 941 Bytes

SpeiDestination

Properties

Name Type Description Notes
type str
address SpeiAddress

Example

from fireblocks.models.spei_destination import SpeiDestination

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

# convert the object into a dict
spei_destination_dict = spei_destination_instance.to_dict()
# create an instance of SpeiDestination from a dict
spei_destination_from_dict = SpeiDestination.from_dict(spei_destination_dict)

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