Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

SetRoutingPolicyRequest.md

File metadata and controls

29 lines (20 loc) · 1.07 KB

SetRoutingPolicyRequest

Properties

Name Type Description Notes
routing_policy Dict[str, NetworkConnectionRoutingPolicyValue]

Example

from fireblocks.models.set_routing_policy_request import SetRoutingPolicyRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SetRoutingPolicyRequest from a JSON string
set_routing_policy_request_instance = SetRoutingPolicyRequest.from_json(json)
# print the JSON string representation of the object
print(SetRoutingPolicyRequest.to_json())

# convert the object into a dict
set_routing_policy_request_dict = set_routing_policy_request_instance.to_dict()
# create an instance of SetRoutingPolicyRequest from a dict
set_routing_policy_request_from_dict = SetRoutingPolicyRequest.from_dict(set_routing_policy_request_dict)

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