Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.56 KB

File metadata and controls

33 lines (24 loc) · 1.56 KB

WordPressV1CommonVulnerabilityResource

Properties

Name Type Description Notes
title str Short title of the vulnerability [optional]
description str Details about the vulnerability [optional]
affected_in str Version in which the vulnerability was introduced or is present [optional]
fixed_in str Version in which the vulnerability was fixed [optional]
direct_url str Link to the vulnerability advisory [optional]

Example

from hostinger_api.models.word_press_v1_common_vulnerability_resource import WordPressV1CommonVulnerabilityResource

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

# convert the object into a dict
word_press_v1_common_vulnerability_resource_dict = word_press_v1_common_vulnerability_resource_instance.to_dict()
# create an instance of WordPressV1CommonVulnerabilityResource from a dict
word_press_v1_common_vulnerability_resource_from_dict = WordPressV1CommonVulnerabilityResource.from_dict(word_press_v1_common_vulnerability_resource_dict)

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