algorithm name
| Name | Type | Description | Notes |
|---|---|---|---|
| algorithm | str | algorithm |
from fireblocks.models.embedded_wallet_algoritm import EmbeddedWalletAlgoritm
# TODO update the JSON string below
json = "{}"
# create an instance of EmbeddedWalletAlgoritm from a JSON string
embedded_wallet_algoritm_instance = EmbeddedWalletAlgoritm.from_json(json)
# print the JSON string representation of the object
print(EmbeddedWalletAlgoritm.to_json())
# convert the object into a dict
embedded_wallet_algoritm_dict = embedded_wallet_algoritm_instance.to_dict()
# create an instance of EmbeddedWalletAlgoritm from a dict
embedded_wallet_algoritm_from_dict = EmbeddedWalletAlgoritm.from_dict(embedded_wallet_algoritm_dict)