Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

File metadata and controls

30 lines (21 loc) · 941 Bytes

SEPADestination

Properties

Name Type Description Notes
type str
address SEPAAddress

Example

from fireblocks.models.sepa_destination import SEPADestination

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

# convert the object into a dict
sepa_destination_dict = sepa_destination_instance.to_dict()
# create an instance of SEPADestination from a dict
sepa_destination_from_dict = SEPADestination.from_dict(sepa_destination_dict)

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