Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.01 KB

AdvisoryTI.md

File metadata and controls

34 lines (25 loc) · 1.01 KB

AdvisoryTI

Properties

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

Example

from vulncheck_sdk.models.advisory_ti import AdvisoryTI

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

# convert the object into a dict
advisory_ti_dict = advisory_ti_instance.to_dict()
# create an instance of AdvisoryTI from a dict
advisory_ti_from_dict = AdvisoryTI.from_dict(advisory_ti_dict)

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