Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 956 Bytes

File metadata and controls

30 lines (21 loc) · 956 Bytes

PayidDestination

Properties

Name Type Description Notes
type str
address PayidAddress

Example

from fireblocks.models.payid_destination import PayidDestination

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

# convert the object into a dict
payid_destination_dict = payid_destination_instance.to_dict()
# create an instance of PayidDestination from a dict
payid_destination_from_dict = PayidDestination.from_dict(payid_destination_dict)

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