The rule validation result
Name | Type | Description | Notes |
---|---|---|---|
index | float | Rule index number in the policy | |
status | str | Validation status | |
errors | List[PolicyRuleError] | A set of rule validation error objects |
from fireblocks.models.policy_rule_check_result import PolicyRuleCheckResult
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyRuleCheckResult from a JSON string
policy_rule_check_result_instance = PolicyRuleCheckResult.from_json(json)
# print the JSON string representation of the object
print(PolicyRuleCheckResult.to_json())
# convert the object into a dict
policy_rule_check_result_dict = policy_rule_check_result_instance.to_dict()
# create an instance of PolicyRuleCheckResult from a dict
policy_rule_check_result_from_dict = PolicyRuleCheckResult.from_dict(policy_rule_check_result_dict)