Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

EmbeddedWalletAccount

Properties

Name Type Description Notes
account_id str The ID of the account
wallet_id str Unique identifier of the Non-Custodial Wallet (UUID)

Example

from fireblocks.models.embedded_wallet_account import EmbeddedWalletAccount

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

# convert the object into a dict
embedded_wallet_account_dict = embedded_wallet_account_instance.to_dict()
# create an instance of EmbeddedWalletAccount from a dict
embedded_wallet_account_from_dict = EmbeddedWalletAccount.from_dict(embedded_wallet_account_dict)

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