Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

PolicyRuleCheckResult.md

File metadata and controls

32 lines (23 loc) · 1.16 KB

PolicyRuleCheckResult

The rule validation result

Properties

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

Example

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)

[Back to Model list] [Back to API list] [Back to README]