Response object for policy operations
| Name | Type | Description | Notes |
|---|---|---|---|
| rules | List[LegacyPolicyRule] | A set of policy rules | |
| metadata | LegacyPolicyMetadata |
from fireblocks.models.legacy_policy_response import LegacyPolicyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of LegacyPolicyResponse from a JSON string
legacy_policy_response_instance = LegacyPolicyResponse.from_json(json)
# print the JSON string representation of the object
print(LegacyPolicyResponse.to_json())
# convert the object into a dict
legacy_policy_response_dict = legacy_policy_response_instance.to_dict()
# create an instance of LegacyPolicyResponse from a dict
legacy_policy_response_from_dict = LegacyPolicyResponse.from_dict(legacy_policy_response_dict)