Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.51 KB

File metadata and controls

31 lines (22 loc) · 1.51 KB

EmbeddedWalletDeviceKeySetupResponseSetupStatusInner

Properties

Name Type Description Notes
algorithm_name EmbeddedWalletAlgoritm
confirmed bool confirmed
backed_up bool backedUp

Example

from fireblocks.models.embedded_wallet_device_key_setup_response_setup_status_inner import EmbeddedWalletDeviceKeySetupResponseSetupStatusInner

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

# convert the object into a dict
embedded_wallet_device_key_setup_response_setup_status_inner_dict = embedded_wallet_device_key_setup_response_setup_status_inner_instance.to_dict()
# create an instance of EmbeddedWalletDeviceKeySetupResponseSetupStatusInner from a dict
embedded_wallet_device_key_setup_response_setup_status_inner_from_dict = EmbeddedWalletDeviceKeySetupResponseSetupStatusInner.from_dict(embedded_wallet_device_key_setup_response_setup_status_inner_dict)

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