Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
31 lines (22 loc) · 1.03 KB
·

AdvisoryCVEReference.md

File metadata and controls

31 lines (22 loc) · 1.03 KB
·

AdvisoryCVEReference

Properties

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

Example

from vulncheck_sdk.models.advisory_cve_reference import AdvisoryCVEReference

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

# convert the object into a dict
advisory_cve_reference_dict = advisory_cve_reference_instance.to_dict()
# create an instance of AdvisoryCVEReference from a dict
advisory_cve_reference_from_dict = AdvisoryCVEReference.from_dict(advisory_cve_reference_dict)

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