Name | Type | Description | Notes |
---|---|---|---|
routing_policy | Dict[str, NetworkIdRoutingPolicyValue] |
from fireblocks.models.set_network_id_routing_policy_request import SetNetworkIdRoutingPolicyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetNetworkIdRoutingPolicyRequest from a JSON string
set_network_id_routing_policy_request_instance = SetNetworkIdRoutingPolicyRequest.from_json(json)
# print the JSON string representation of the object
print(SetNetworkIdRoutingPolicyRequest.to_json())
# convert the object into a dict
set_network_id_routing_policy_request_dict = set_network_id_routing_policy_request_instance.to_dict()
# create an instance of SetNetworkIdRoutingPolicyRequest from a dict
set_network_id_routing_policy_request_from_dict = SetNetworkIdRoutingPolicyRequest.from_dict(set_network_id_routing_policy_request_dict)