| Name | Type | Description | Notes |
|---|---|---|---|
| vulnerability_id | str | ||
| type | VulnerabilityType | ||
| title | str | ||
| description | str | We detected a copy of sensitive data in another account... | |
| detection_timestamp | float | ||
| criticality | VulnerabilityCriticality | ||
| threats | List[str] | [optional] | |
| compliance | List[Compliance] | [optional] | |
| affected_asset | VulnerabilityRelatedAsset | [optional] | |
| status | VulnerabilityStatusType | [optional] |
from ibm_gdsc_sdk_saas.models.vulnerability_list_item import VulnerabilityListItem
# TODO update the JSON string below
json = "{}"
# create an instance of VulnerabilityListItem from a JSON string
vulnerability_list_item_instance = VulnerabilityListItem.from_json(json)
# print the JSON string representation of the object
print(VulnerabilityListItem.to_json())
# convert the object into a dict
vulnerability_list_item_dict = vulnerability_list_item_instance.to_dict()
# create an instance of VulnerabilityListItem from a dict
vulnerability_list_item_from_dict = VulnerabilityListItem.from_dict(vulnerability_list_item_dict)