Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.46 KB

File metadata and controls

31 lines (22 loc) · 1.46 KB

EmbeddedWalletSetupStatusResponse

Properties

Name Type Description Notes
status EmbeddedWalletSetUpStatus
required_algorithms List[EmbeddedWalletRequiredAlgorithms] Required algorithms for the wallet
device_setup_status List[EmbeddedWalletDeviceKeySetupResponse] Setup status for each device

Example

from fireblocks.models.embedded_wallet_setup_status_response import EmbeddedWalletSetupStatusResponse

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

# convert the object into a dict
embedded_wallet_setup_status_response_dict = embedded_wallet_setup_status_response_instance.to_dict()
# create an instance of EmbeddedWalletSetupStatusResponse from a dict
embedded_wallet_setup_status_response_from_dict = EmbeddedWalletSetupStatusResponse.from_dict(embedded_wallet_setup_status_response_dict)

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