TestCreate
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| engagement |
int |
|
[optional] |
| notes |
List[Optional[int]] |
|
[optional] |
| tags |
List[str] |
|
[optional] |
| 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] |
| lead |
int |
|
[optional] |
| test_type |
int |
|
[optional] |
| environment |
int |
|
[optional] |
| api_scan_configuration |
int |
|
[optional] |
| files |
List[int] |
|
[optional] [readonly] |
Example
from defectdojo_api_generated.models.test_create import TestCreate
# TODO update the JSON string below
json = "{}"
# create an instance of TestCreate from a JSON string
test_create_instance = TestCreate.from_json(json)
# print the JSON string representation of the object
print(TestCreate.to_json())
# convert the object into a dict
test_create_dict = test_create_instance.to_dict()
# create an instance of TestCreate from a dict
test_create_from_dict = TestCreate.from_dict(test_create_dict)
[Back to Model list] [Back to API list] [Back to README]