NoteType
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| is_single |
bool |
|
[optional] |
| is_active |
bool |
|
[optional] |
| is_mandatory |
bool |
|
[optional] |
Example
from defectdojo_api_generated.models.note_type import NoteType
# TODO update the JSON string below
json = "{}"
# create an instance of NoteType from a JSON string
note_type_instance = NoteType.from_json(json)
# print the JSON string representation of the object
print(NoteType.to_json())
# convert the object into a dict
note_type_dict = note_type_instance.to_dict()
# create an instance of NoteType from a dict
note_type_from_dict = NoteType.from_dict(note_type_dict)
[Back to Model list] [Back to API list] [Back to README]