Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.06 KB

File metadata and controls

37 lines (28 loc) · 1.06 KB

Sensitivity

Properties

Name Type Description Notes
sensitivity_id str
tag str
query str
resource_id str
quarantine_bucket_link str
data_store_id str
last_seen str
hash str
category str

Example

from ibm_gdsc_sdk_saas.models.sensitivity import Sensitivity

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

# convert the object into a dict
sensitivity_dict = sensitivity_instance.to_dict()
# create an instance of Sensitivity from a dict
sensitivity_from_dict = Sensitivity.from_dict(sensitivity_dict)

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