Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
32 lines (23 loc) · 1.01 KB
·

AdvisoryReference.md

File metadata and controls

32 lines (23 loc) · 1.01 KB
·

AdvisoryReference

Properties

Name Type Description Notes
href str sort [optional]
id str [optional]
title str [optional]
type str [optional]

Example

from vulncheck_sdk.models.advisory_reference import AdvisoryReference

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

# convert the object into a dict
advisory_reference_dict = advisory_reference_instance.to_dict()
# create an instance of AdvisoryReference from a dict
advisory_reference_from_dict = AdvisoryReference.from_dict(advisory_reference_dict)

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