| Name |
Type |
Description |
Notes |
| wallet_id |
str |
Represents the sender's specific and unique Wallet ID of the sender. |
|
from cryptoapis.models.create_new_master_wallet_ri import CreateNewMasterWalletRI
# TODO update the JSON string below
json = "{}"
# create an instance of CreateNewMasterWalletRI from a JSON string
create_new_master_wallet_ri_instance = CreateNewMasterWalletRI.from_json(json)
# print the JSON string representation of the object
print CreateNewMasterWalletRI.to_json()
# convert the object into a dict
create_new_master_wallet_ri_dict = create_new_master_wallet_ri_instance.to_dict()
# create an instance of CreateNewMasterWalletRI from a dict
create_new_master_wallet_ri_form_dict = create_new_master_wallet_ri.from_dict(create_new_master_wallet_ri_dict)
[Back to Model list] [Back to API list] [Back to README]