Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

MobileMoneyDestination

Properties

Name Type Description Notes
type str
address MobileMoneyAddress

Example

from fireblocks.models.mobile_money_destination import MobileMoneyDestination

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

# convert the object into a dict
mobile_money_destination_dict = mobile_money_destination_instance.to_dict()
# create an instance of MobileMoneyDestination from a dict
mobile_money_destination_from_dict = MobileMoneyDestination.from_dict(mobile_money_destination_dict)

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