Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

AdvisoryDocumentNote.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

AdvisoryDocumentNote

Properties

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

Example

from vulncheck_sdk.models.advisory_document_note import AdvisoryDocumentNote

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

# convert the object into a dict
advisory_document_note_dict = advisory_document_note_instance.to_dict()
# create an instance of AdvisoryDocumentNote from a dict
advisory_document_note_from_dict = AdvisoryDocumentNote.from_dict(advisory_document_note_dict)

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