Information about the transaction source type Safe{Wallet}. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type. Switch between the tabs to display the properties for different transaction sources.
| Name | Type | Description | Notes |
|---|---|---|---|
| source_type | TransactionSourceType | ||
| wallet_id | str | The wallet ID. | |
| address | str | The wallet address. | |
| delegate | CoboSafeDelegate | [optional] |
from cobo_waas2.models.transaction_smart_contract_safe_wallet_source import TransactionSmartContractSafeWalletSource
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionSmartContractSafeWalletSource from a JSON string
transaction_smart_contract_safe_wallet_source_instance = TransactionSmartContractSafeWalletSource.from_json(json)
# print the JSON string representation of the object
print(TransactionSmartContractSafeWalletSource.to_json())
# convert the object into a dict
transaction_smart_contract_safe_wallet_source_dict = transaction_smart_contract_safe_wallet_source_instance.to_dict()
# create an instance of TransactionSmartContractSafeWalletSource from a dict
transaction_smart_contract_safe_wallet_source_from_dict = TransactionSmartContractSafeWalletSource.from_dict(transaction_smart_contract_safe_wallet_source_dict)