NoteHistoryRequest
Properties
| Name |
Type |
Description |
Notes |
| data |
str |
|
[optional] |
Example
from defectdojo_api_generated.models.note_history_request import NoteHistoryRequest
# TODO update the JSON string below
json = "{}"
# create an instance of NoteHistoryRequest from a JSON string
note_history_request_instance = NoteHistoryRequest.from_json(json)
# print the JSON string representation of the object
print(NoteHistoryRequest.to_json())
# convert the object into a dict
note_history_request_dict = note_history_request_instance.to_dict()
# create an instance of NoteHistoryRequest from a dict
note_history_request_from_dict = NoteHistoryRequest.from_dict(note_history_request_dict)
[Back to Model list] [Back to API list] [Back to README]