Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1.06 KB

File metadata and controls

28 lines (20 loc) · 1.06 KB

CreateNewMasterWalletRI

Properties

Name Type Description Notes
wallet_id str Represents the sender's specific and unique Wallet ID of the sender.

Example

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]