Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

AdvisoryDjango.md

File metadata and controls

33 lines (24 loc) · 1.03 KB

AdvisoryDjango

Properties

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

Example

from vulncheck_sdk.models.advisory_django import AdvisoryDjango

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

# convert the object into a dict
advisory_django_dict = advisory_django_instance.to_dict()
# create an instance of AdvisoryDjango from a dict
advisory_django_from_dict = AdvisoryDjango.from_dict(advisory_django_dict)

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