Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

PolicyCheckResult.md

File metadata and controls

31 lines (22 loc) · 1.05 KB

PolicyCheckResult

Policy rules validation result

Properties

Name Type Description Notes
errors float Number of errors
results List[PolicyRuleCheckResult] A set of validation results

Example

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)

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