Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

NetworkIdResponse.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

NetworkIdResponse

Properties

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]

Example

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)

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