Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
37 lines (28 loc) · 1.16 KB
·

AdvisoryA10.md

File metadata and controls

37 lines (28 loc) · 1.16 KB
·

AdvisoryA10

Properties

Name Type Description Notes
affected List[str] [optional]
cve List[str] [optional]
date_added str [optional]
fixed List[str] [optional]
reference List[str] [optional]
summary str [optional]
title str [optional]
updated_at str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_a10 import AdvisoryA10

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

# convert the object into a dict
advisory_a10_dict = advisory_a10_instance.to_dict()
# create an instance of AdvisoryA10 from a dict
advisory_a10_from_dict = AdvisoryA10.from_dict(advisory_a10_dict)

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