Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.18 KB

SetNetworkIdRoutingPolicyRequest.md

File metadata and controls

29 lines (20 loc) · 1.18 KB

SetNetworkIdRoutingPolicyRequest

Properties

Name Type Description Notes
routing_policy Dict[str, NetworkIdRoutingPolicyValue]

Example

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)

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