Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 900 Bytes

File metadata and controls

29 lines (20 loc) · 900 Bytes

EnableWallet

Properties

Name Type Description Notes
enabled bool Whether the wallet should be enabled or disabled

Example

from fireblocks.models.enable_wallet import EnableWallet

# TODO update the JSON string below
json = "{}"
# create an instance of EnableWallet from a JSON string
enable_wallet_instance = EnableWallet.from_json(json)
# print the JSON string representation of the object
print(EnableWallet.to_json())

# convert the object into a dict
enable_wallet_dict = enable_wallet_instance.to_dict()
# create an instance of EnableWallet from a dict
enable_wallet_from_dict = EnableWallet.from_dict(enable_wallet_dict)

[Back to Model list] [Back to API list] [Back to README]