The information of Custodial Wallets.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The wallet name. This field is required and cannot be empty. Letters, numbers, and spaces are supported (for example, `My WaaS 2.0 Wallet`). <Note>Some special characters are not accepted. For example, the at sign (`@`) is rejected. If the name is empty or contains unsupported characters, the request fails with a `400 Bad Request` error.</Note> | |
| 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] |
from cobo_waas2.models.create_custodial_wallet_params import CreateCustodialWalletParams
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCustodialWalletParams from a JSON string
create_custodial_wallet_params_instance = CreateCustodialWalletParams.from_json(json)
# print the JSON string representation of the object
print(CreateCustodialWalletParams.to_json())
# convert the object into a dict
create_custodial_wallet_params_dict = create_custodial_wallet_params_instance.to_dict()
# create an instance of CreateCustodialWalletParams from a dict
create_custodial_wallet_params_from_dict = CreateCustodialWalletParams.from_dict(create_custodial_wallet_params_dict)