Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1021 Bytes

AdvisorySel.md

File metadata and controls

33 lines (24 loc) · 1021 Bytes

AdvisorySel

Properties

Name Type Description Notes
acknowledgement str [optional]
cve List[str] [optional]
date_added str [optional]
description str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_sel import AdvisorySel

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

# convert the object into a dict
advisory_sel_dict = advisory_sel_instance.to_dict()
# create an instance of AdvisorySel from a dict
advisory_sel_from_dict = AdvisorySel.from_dict(advisory_sel_dict)

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