Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
32 lines (23 loc) · 974 Bytes
·

AdvisoryNote.md

File metadata and controls

32 lines (23 loc) · 974 Bytes
·

AdvisoryNote

Properties

Name Type Description Notes
ordinal str [optional]
text str [optional]
title str [optional]
type int [optional]

Example

from vulncheck_sdk.models.advisory_note import AdvisoryNote

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

# convert the object into a dict
advisory_note_dict = advisory_note_instance.to_dict()
# create an instance of AdvisoryNote from a dict
advisory_note_from_dict = AdvisoryNote.from_dict(advisory_note_dict)

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