Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

GetConnectionsResponse.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

GetConnectionsResponse

Properties

Name Type Description Notes
data List[SessionDTO] Array with the requested Web3 connection's data
paging Paging [optional]

Example

from fireblocks.models.get_connections_response import GetConnectionsResponse

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

# convert the object into a dict
get_connections_response_dict = get_connections_response_instance.to_dict()
# create an instance of GetConnectionsResponse from a dict
get_connections_response_from_dict = GetConnectionsResponse.from_dict(get_connections_response_dict)

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