| Name |
Type |
Description |
Notes |
| success |
bool |
|
|
from fireblocks.models.set_routing_policy_response import SetRoutingPolicyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SetRoutingPolicyResponse from a JSON string
set_routing_policy_response_instance = SetRoutingPolicyResponse.from_json(json)
# print the JSON string representation of the object
print(SetRoutingPolicyResponse.to_json())
# convert the object into a dict
set_routing_policy_response_dict = set_routing_policy_response_instance.to_dict()
# create an instance of SetRoutingPolicyResponse from a dict
set_routing_policy_response_from_dict = SetRoutingPolicyResponse.from_dict(set_routing_policy_response_dict)
[Back to Model list] [Back to API list] [Back to README]