Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

AdvisoryCSAFReference.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

AdvisoryCSAFReference

Properties

Name Type Description Notes
category str [optional]
summary str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_csaf_reference import AdvisoryCSAFReference

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

# convert the object into a dict
advisory_csaf_reference_dict = advisory_csaf_reference_instance.to_dict()
# create an instance of AdvisoryCSAFReference from a dict
advisory_csaf_reference_from_dict = AdvisoryCSAFReference.from_dict(advisory_csaf_reference_dict)

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