Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

FiatDestination

Properties

Name Type Description Notes
type str
address InternalTransferAddress

Example

from fireblocks.models.fiat_destination import FiatDestination

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

# convert the object into a dict
fiat_destination_dict = fiat_destination_instance.to_dict()
# create an instance of FiatDestination from a dict
fiat_destination_from_dict = FiatDestination.from_dict(fiat_destination_dict)

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