Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1013 Bytes

File metadata and controls

30 lines (21 loc) · 1013 Bytes

EmbeddedWalletAlgoritm

algorithm name

Properties

Name Type Description Notes
algorithm str algorithm

Example

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)

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