Test
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| tags |
List[str] |
|
[optional] |
| test_type_name |
str |
|
[optional] [readonly] |
| finding_groups |
List[FindingGroup] |
|
[optional] [readonly] |
| scan_type |
str |
|
[optional] |
| title |
str |
|
[optional] |
| description |
str |
|
[optional] |
| target_start |
datetime |
|
[optional] |
| target_end |
datetime |
|
[optional] |
| percent_complete |
int |
|
[optional] |
| updated |
datetime |
|
[optional] [readonly] |
| created |
datetime |
|
[optional] [readonly] |
| version |
str |
|
[optional] |
| build_id |
str |
Build ID that was tested, a reimport may update this field. |
[optional] |
| commit_hash |
str |
Commit hash tested, a reimport may update this field. |
[optional] |
| branch_tag |
str |
Tag or branch that was tested, a reimport may update this field. |
[optional] |
| engagement |
int |
|
[optional] [readonly] |
| lead |
int |
|
[optional] |
| test_type |
int |
|
[optional] |
| environment |
int |
|
[optional] |
| api_scan_configuration |
int |
|
[optional] |
| notes |
List[Note] |
|
[optional] [readonly] |
| files |
List[File] |
|
[optional] [readonly] |
Example
from defectdojo_api_generated.models.test import Test
# TODO update the JSON string below
json = "{}"
# create an instance of Test from a JSON string
test_instance = Test.from_json(json)
# print the JSON string representation of the object
print(Test.to_json())
# convert the object into a dict
test_dict = test_instance.to_dict()
# create an instance of Test from a dict
test_from_dict = Test.from_dict(test_dict)
[Back to Model list] [Back to API list] [Back to README]