Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.09 KB

File metadata and controls

34 lines (26 loc) · 1.09 KB

DlpPolicy

Properties

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]

Example

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)

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