Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 926 Bytes

File metadata and controls

30 lines (21 loc) · 926 Bytes

PixDestination

Properties

Name Type Description Notes
type str
address PixAddress

Example

from fireblocks.models.pix_destination import PixDestination

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

# convert the object into a dict
pix_destination_dict = pix_destination_instance.to_dict()
# create an instance of PixDestination from a dict
pix_destination_from_dict = PixDestination.from_dict(pix_destination_dict)

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