Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
35 lines (26 loc) · 1.23 KB
·

AdvisoryTheMissingLink.md

File metadata and controls

35 lines (26 loc) · 1.23 KB
·

AdvisoryTheMissingLink

Properties

Name Type Description Notes
affected_versions str [optional]
cve List[str] [optional]
date_added str [optional]
fixed_versions str [optional]
summary str [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_the_missing_link import AdvisoryTheMissingLink

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

# convert the object into a dict
advisory_the_missing_link_dict = advisory_the_missing_link_instance.to_dict()
# create an instance of AdvisoryTheMissingLink from a dict
advisory_the_missing_link_from_dict = AdvisoryTheMissingLink.from_dict(advisory_the_missing_link_dict)

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