PatchedFindingNoteRequest

Properties

Name Type Description Notes
note_id int [optional]

Example

from defectdojo_api_generated.models.patched_finding_note_request import PatchedFindingNoteRequest

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

# convert the object into a dict
patched_finding_note_request_dict = patched_finding_note_request_instance.to_dict()
# create an instance of PatchedFindingNoteRequest from a dict
patched_finding_note_request_from_dict = PatchedFindingNoteRequest.from_dict(patched_finding_note_request_dict)

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