TestImport
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| test_import_finding_action_set |
List[TestImportFindingAction] |
|
[optional] [readonly] |
| created |
datetime |
|
[optional] [readonly] |
| modified |
datetime |
|
[optional] [readonly] |
| import_settings |
object |
|
[optional] |
| type |
str |
|
[optional] |
| 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] |
| test |
int |
|
[optional] [readonly] |
| findings_affected |
List[int] |
|
[optional] [readonly] |
Example
from defectdojo_api_generated.models.test_import import TestImport
# TODO update the JSON string below
json = "{}"
# create an instance of TestImport from a JSON string
test_import_instance = TestImport.from_json(json)
# print the JSON string representation of the object
print(TestImport.to_json())
# convert the object into a dict
test_import_dict = test_import_instance.to_dict()
# create an instance of TestImport from a dict
test_import_from_dict = TestImport.from_dict(test_import_dict)
[Back to Model list] [Back to API list] [Back to README]