Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.56 KB

NetworkConnectionResponse.md

File metadata and controls

35 lines (26 loc) · 1.56 KB

NetworkConnectionResponse

Properties

Name Type Description Notes
id str
local_channel NetworkChannel Deprecated - Replaced by `localNetworkId` [optional]
remote_channel NetworkChannel Deprecated - Replaced by `remoteNetworkId` [optional]
status NetworkConnectionStatus
local_network_id NetworkId
remote_network_id NetworkId
routing_policy Dict[str, NetworkConnectionRoutingPolicyValue]

Example

from fireblocks.models.network_connection_response import NetworkConnectionResponse

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

# convert the object into a dict
network_connection_response_dict = network_connection_response_instance.to_dict()
# create an instance of NetworkConnectionResponse from a dict
network_connection_response_from_dict = NetworkConnectionResponse.from_dict(network_connection_response_dict)

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