Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.1 KB

AdvisoryElspec.md

File metadata and controls

35 lines (26 loc) · 1.1 KB

AdvisoryElspec

Properties

Name Type Description Notes
affected str [optional]
cve List[str] [optional]
date_added str [optional]
fixed str [optional]
severity str [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_elspec import AdvisoryElspec

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

# convert the object into a dict
advisory_elspec_dict = advisory_elspec_instance.to_dict()
# create an instance of AdvisoryElspec from a dict
advisory_elspec_from_dict = AdvisoryElspec.from_dict(advisory_elspec_dict)

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