Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

PolicyTestResult

result of a policy test

Properties

Name Type Description Notes
passing bool
messages List[str] [readonly]
log_messages List[LogEvent] [readonly]

Example

from authentik_client.models.policy_test_result import PolicyTestResult

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

# convert the object into a dict
policy_test_result_dict = policy_test_result_instance.to_dict()
# create an instance of PolicyTestResult from a dict
policy_test_result_from_dict = PolicyTestResult.from_dict(policy_test_result_dict)

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