Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1020 Bytes

File metadata and controls

29 lines (20 loc) · 1020 Bytes

SetRoutingPolicyResponse

Properties

Name Type Description Notes
success bool

Example

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]