Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

LegacyPolicyCheckResult

Policy rules validation result

Properties

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

Example

from fireblocks.models.legacy_policy_check_result import LegacyPolicyCheckResult

# TODO update the JSON string below
json = "{}"
# create an instance of LegacyPolicyCheckResult from a JSON string
legacy_policy_check_result_instance = LegacyPolicyCheckResult.from_json(json)
# print the JSON string representation of the object
print(LegacyPolicyCheckResult.to_json())

# convert the object into a dict
legacy_policy_check_result_dict = legacy_policy_check_result_instance.to_dict()
# create an instance of LegacyPolicyCheckResult from a dict
legacy_policy_check_result_from_dict = LegacyPolicyCheckResult.from_dict(legacy_policy_check_result_dict)

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