Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.52 KB

CreateVaultAccountConnectionRequest.md

File metadata and controls

32 lines (23 loc) · 1.52 KB

CreateVaultAccountConnectionRequest

Properties

Name Type Description Notes
vault_account_id float The ID of the vault to connect to the dApp.
fee_level str The default fee level. Valid values are `MEDIUM` and `HIGH`.
uri str The WalletConnect uri provided by the dapp.
chain_ids List[str] The IDs of the blockchain networks used in the Web3 connection (Currently required in V1 connections only). [optional]

Example

from fireblocks.models.create_vault_account_connection_request import CreateVaultAccountConnectionRequest

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

# convert the object into a dict
create_vault_account_connection_request_dict = create_vault_account_connection_request_instance.to_dict()
# create an instance of CreateVaultAccountConnectionRequest from a dict
create_vault_account_connection_request_from_dict = CreateVaultAccountConnectionRequest.from_dict(create_vault_account_connection_request_dict)

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