Response object for policy operations
Name | Type | Description | Notes |
---|---|---|---|
rules | List[PolicyRule] | A set of policy rules | |
metadata | PolicyMetadata |
from fireblocks.models.policy_response import PolicyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyResponse from a JSON string
policy_response_instance = PolicyResponse.from_json(json)
# print the JSON string representation of the object
print(PolicyResponse.to_json())
# convert the object into a dict
policy_response_dict = policy_response_instance.to_dict()
# create an instance of PolicyResponse from a dict
policy_response_from_dict = PolicyResponse.from_dict(policy_response_dict)