Name |
Type |
Description |
Notes |
ordinal |
str |
|
[optional] |
text |
str |
|
[optional] |
title |
str |
|
[optional] |
type |
int |
|
[optional] |
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]