Name | Type | Description | Notes |
---|---|---|---|
changes | List[ApiExploitsChange] | [optional] | |
cve | str | [optional] |
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)