Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.33 KB

File metadata and controls

34 lines (25 loc) · 1.33 KB

PatchedDummyPolicyRequest

Dummy Policy Serializer

Properties

Name Type Description Notes
name str [optional]
execution_logging bool When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. [optional]
result bool [optional]
wait_min int [optional]
wait_max int [optional]

Example

from authentik_client.models.patched_dummy_policy_request import PatchedDummyPolicyRequest

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

# convert the object into a dict
patched_dummy_policy_request_dict = patched_dummy_policy_request_instance.to_dict()
# create an instance of PatchedDummyPolicyRequest from a dict
patched_dummy_policy_request_from_dict = PatchedDummyPolicyRequest.from_dict(patched_dummy_policy_request_dict)

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