Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
33 lines (24 loc) · 1.03 KB
·

AdvisoryCertSE.md

File metadata and controls

33 lines (24 loc) · 1.03 KB
·

AdvisoryCertSE

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
summary_sv str [optional]
title_sv str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_cert_se import AdvisoryCertSE

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

# convert the object into a dict
advisory_cert_se_dict = advisory_cert_se_instance.to_dict()
# create an instance of AdvisoryCertSE from a dict
advisory_cert_se_from_dict = AdvisoryCertSE.from_dict(advisory_cert_se_dict)

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