Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

ApiExploitsChangelog.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

ApiExploitsChangelog

Properties

Name Type Description Notes
changes List[ApiExploitsChange] [optional]
cve str [optional]

Example

from vulncheck_sdk.models.api_exploits_changelog import ApiExploitsChangelog

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

# convert the object into a dict
api_exploits_changelog_dict = api_exploits_changelog_instance.to_dict()
# create an instance of ApiExploitsChangelog from a dict
api_exploits_changelog_from_dict = ApiExploitsChangelog.from_dict(api_exploits_changelog_dict)

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