Name | Type | Description | Notes |
---|---|---|---|
local_network_id | str | The network ID of the profile trying to create the connection. | |
remote_network_id | str | The network ID the profile is attempting to connect to. | |
routing_policy | Dict[str, NetworkConnectionRoutingPolicyValue] | [optional] |
from fireblocks.models.network_connection import NetworkConnection
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkConnection from a JSON string
network_connection_instance = NetworkConnection.from_json(json)
# print the JSON string representation of the object
print(NetworkConnection.to_json())
# convert the object into a dict
network_connection_dict = network_connection_instance.to_dict()
# create an instance of NetworkConnection from a dict
network_connection_from_dict = NetworkConnection.from_dict(network_connection_dict)