Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.3 KB

File metadata and controls

34 lines (25 loc) · 1.3 KB

ReputationPolicyRequest

Reputation Policy Serializer

Properties

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

Example

from authentik_client.models.reputation_policy_request import ReputationPolicyRequest

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

# convert the object into a dict
reputation_policy_request_dict = reputation_policy_request_instance.to_dict()
# create an instance of ReputationPolicyRequest from a dict
reputation_policy_request_from_dict = ReputationPolicyRequest.from_dict(reputation_policy_request_dict)

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