| Name | Type | Description | Notes |
|---|---|---|---|
| active | bool | [optional] | |
| anonymizer | DlpPolicyAnonymizer | [optional] | |
| entities | List[str] | [optional] | |
| id | float | [optional] | |
| name | str | [optional] | |
| response | str | [optional] | |
| score_threshold | float | [optional] |
from dreamcatcher.models.dlp_policy import DlpPolicy
# TODO update the JSON string below
json = "{}"
# create an instance of DlpPolicy from a JSON string
dlp_policy_instance = DlpPolicy.from_json(json)
# print the JSON string representation of the object
print DlpPolicy.to_json()
# convert the object into a dict
dlp_policy_dict = dlp_policy_instance.to_dict()
# create an instance of DlpPolicy from a dict
dlp_policy_from_dict = DlpPolicy.from_dict(dlp_policy_dict)