Skip to content

Files

Latest commit

2b92f61 · Feb 1, 2025

History

History
30 lines (21 loc) · 1.01 KB
·

AdvisoryPyPAReference.md

File metadata and controls

30 lines (21 loc) · 1.01 KB
·

AdvisoryPyPAReference

Properties

Name Type Description Notes
refs_type str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_py_pa_reference import AdvisoryPyPAReference

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

# convert the object into a dict
advisory_py_pa_reference_dict = advisory_py_pa_reference_instance.to_dict()
# create an instance of AdvisoryPyPAReference from a dict
advisory_py_pa_reference_from_dict = AdvisoryPyPAReference.from_dict(advisory_py_pa_reference_dict)

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