Policy rules validation result
Name | Type | Description | Notes |
---|---|---|---|
errors | float | Number of errors | |
results | List[PolicyRuleCheckResult] | A set of validation results |
from fireblocks.models.policy_check_result import PolicyCheckResult
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyCheckResult from a JSON string
policy_check_result_instance = PolicyCheckResult.from_json(json)
# print the JSON string representation of the object
print(PolicyCheckResult.to_json())
# convert the object into a dict
policy_check_result_dict = policy_check_result_instance.to_dict()
# create an instance of PolicyCheckResult from a dict
policy_check_result_from_dict = PolicyCheckResult.from_dict(policy_check_result_dict)