| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Vulnerability ID | |
| title | str | Vulnerability title | |
| description | str | Vulnerability description | |
| direct_url | str | Vulnerability details URL | |
| risk_rank | str | Vulnerability risk rank | |
| cvss_score | float | Vulnerability score by CVSSv3.1 | |
| cve | List[str] | List of CVE corresponding to vulnerability | |
| exploited | bool | ||
| disclosed_at | str | Date/time when the vulnerability was disclosed | |
| fixed_in | str | Version where vulnerability was fixed | |
| mitigations | List[VulnerabilityMitigation] | Vulnerability mitigation options | |
| providers | List[VulnerabilityProvider] | Vulnerability providers information |
from plesk_wp_toolkit_client.models.vulnerability import Vulnerability
# TODO update the JSON string below
json = "{}"
# create an instance of Vulnerability from a JSON string
vulnerability_instance = Vulnerability.from_json(json)
# print the JSON string representation of the object
print(Vulnerability.to_json())
# convert the object into a dict
vulnerability_dict = vulnerability_instance.to_dict()
# create an instance of Vulnerability from a dict
vulnerability_from_dict = Vulnerability.from_dict(vulnerability_dict)