Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 985 Bytes

AdvisoryAsus.md

File metadata and controls

32 lines (23 loc) · 985 Bytes

AdvisoryAsus

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
details str [optional]
title str [optional]

Example

from vulncheck_sdk.models.advisory_asus import AdvisoryAsus

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

# convert the object into a dict
advisory_asus_dict = advisory_asus_instance.to_dict()
# create an instance of AdvisoryAsus from a dict
advisory_asus_from_dict = AdvisoryAsus.from_dict(advisory_asus_dict)

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