| Name |
Type |
Description |
Notes |
| provider |
str |
Type of vulnerability provider |
|
| direct_url |
str |
Link to vulnerability description |
|
from plesk_wp_toolkit_client.models.vulnerability_provider import VulnerabilityProvider
# TODO update the JSON string below
json = "{}"
# create an instance of VulnerabilityProvider from a JSON string
vulnerability_provider_instance = VulnerabilityProvider.from_json(json)
# print the JSON string representation of the object
print(VulnerabilityProvider.to_json())
# convert the object into a dict
vulnerability_provider_dict = vulnerability_provider_instance.to_dict()
# create an instance of VulnerabilityProvider from a dict
vulnerability_provider_from_dict = VulnerabilityProvider.from_dict(vulnerability_provider_dict)
[Back to Model list] [Back to API list] [Back to README]