Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

NetworkConnection.md

File metadata and controls

31 lines (22 loc) · 1.18 KB

NetworkConnection

Properties

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]

Example

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)

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