| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The wallet name. | |
| wallet_type | WalletType | ||
| wallet_subtype | WalletSubtype | ||
| enable_auto_sweep | bool | Enable the auto-sweep feature for the wallet. This parameter only applies to MPC Wallets and Custodial Wallets (Web3 Wallets). | [optional] |
| vault_id | str | The ID of the owning vault. You can call List all vaults to retrieve all vault IDs under your organization. |
from cobo_waas2.models.create_mpc_wallet_params import CreateMpcWalletParams
# TODO update the JSON string below
json = "{}"
# create an instance of CreateMpcWalletParams from a JSON string
create_mpc_wallet_params_instance = CreateMpcWalletParams.from_json(json)
# print the JSON string representation of the object
print(CreateMpcWalletParams.to_json())
# convert the object into a dict
create_mpc_wallet_params_dict = create_mpc_wallet_params_instance.to_dict()
# create an instance of CreateMpcWalletParams from a dict
create_mpc_wallet_params_from_dict = CreateMpcWalletParams.from_dict(create_mpc_wallet_params_dict)