Note

Properties

Name Type Description Notes
id int [optional] [readonly]
author UserStub [optional] [readonly]
editor UserStub [optional] [readonly]
history List[NoteHistory] [optional] [readonly]
note_type NoteType [optional] [readonly]
entry str [optional]
var_date datetime [optional] [readonly]
private bool [optional]
edited bool [optional]
edit_time datetime [optional] [readonly]

Example

from defectdojo_api_generated.models.note import Note

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

# convert the object into a dict
note_dict = note_instance.to_dict()
# create an instance of Note from a dict
note_from_dict = Note.from_dict(note_dict)

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