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] |
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)