Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

EmbeddedWalletLatestBackupResponse

Properties

Name Type Description Notes
passphrase_id str passphraseId
created_at float createdAt
keys List[EmbeddedWalletLatestBackupKey] keys

Example

from fireblocks.models.embedded_wallet_latest_backup_response import EmbeddedWalletLatestBackupResponse

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

# convert the object into a dict
embedded_wallet_latest_backup_response_dict = embedded_wallet_latest_backup_response_instance.to_dict()
# create an instance of EmbeddedWalletLatestBackupResponse from a dict
embedded_wallet_latest_backup_response_from_dict = EmbeddedWalletLatestBackupResponse.from_dict(embedded_wallet_latest_backup_response_dict)

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