| Name | Type | Description | Notes |
|---|---|---|---|
| wallet_id | str | The wallet ID. | |
| wallet_type | WalletType | ||
| wallet_subtype | WalletSubtype | ||
| name | str | The wallet name. | |
| org_id | str | The ID of the owning organization. | |
| enable_auto_sweep | bool | Enable the auto sweep feature for the wallet | [optional] |
| chain_id | str | The ID of the chain on which the wallet operates. | [optional] |
| smart_contract_wallet_type | SmartContractWalletType | ||
| safe_address | str | The Smart Contract Wallet address. | [optional] |
| signers | List[str] | The signers of the Smart Contract Wallet. | [optional] |
| threshold | int | The minimum number of confirmations required for the Smart Contract Wallet. | [optional] |
| cobo_safe_address | str | The address of Cobo Safe. | [optional] |
| initiator | SmartContractInitiator | [optional] |
from cobo_waas2.models.safe_wallet import SafeWallet
# TODO update the JSON string below
json = "{}"
# create an instance of SafeWallet from a JSON string
safe_wallet_instance = SafeWallet.from_json(json)
# print the JSON string representation of the object
print(SafeWallet.to_json())
# convert the object into a dict
safe_wallet_dict = safe_wallet_instance.to_dict()
# create an instance of SafeWallet from a dict
safe_wallet_from_dict = SafeWallet.from_dict(safe_wallet_dict)