Name | Type | Description | Notes |
---|---|---|---|
routing_policy | Dict[str, NetworkIdRoutingPolicyValue] | [optional] | |
is_discoverable | bool | The specific network is discoverable. | [optional] |
id | str | The specific network id | [optional] |
name | str | The specific network name | [optional] |
from fireblocks.models.network_id_response import NetworkIdResponse
# TODO update the JSON string below
json = "{}"
# create an instance of NetworkIdResponse from a JSON string
network_id_response_instance = NetworkIdResponse.from_json(json)
# print the JSON string representation of the object
print(NetworkIdResponse.to_json())
# convert the object into a dict
network_id_response_dict = network_id_response_instance.to_dict()
# create an instance of NetworkIdResponse from a dict
network_id_response_from_dict = NetworkIdResponse.from_dict(network_id_response_dict)