Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

CreateConnectionResponse.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

CreateConnectionResponse

Properties

Name Type Description Notes
id str The ID of the Web3 connection initiated.
session_metadata SessionMetadata Metadata of the Web3 connection (provided by the DApp).

Example

from fireblocks.models.create_connection_response import CreateConnectionResponse

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

# convert the object into a dict
create_connection_response_dict = create_connection_response_instance.to_dict()
# create an instance of CreateConnectionResponse from a dict
create_connection_response_from_dict = CreateConnectionResponse.from_dict(create_connection_response_dict)

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