Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1016 Bytes

UnmanagedWallet.md

File metadata and controls

32 lines (23 loc) · 1016 Bytes

UnmanagedWallet

Properties

Name Type Description Notes
id str
name str
customer_ref_id str [optional]
assets List[WalletAsset]

Example

from fireblocks.models.unmanaged_wallet import UnmanagedWallet

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

# convert the object into a dict
unmanaged_wallet_dict = unmanaged_wallet_instance.to_dict()
# create an instance of UnmanagedWallet from a dict
unmanaged_wallet_from_dict = UnmanagedWallet.from_dict(unmanaged_wallet_dict)

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