FindingEngagement
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| product |
FindingProduct |
|
[optional] |
| target_start |
date |
|
[optional] |
| target_end |
date |
|
[optional] |
| branch_tag |
str |
Tag or branch of the product the engagement tested. |
[optional] |
| engagement_type |
str |
* `Interactive` - Interactive * `CI/CD` - CI/CD |
[optional] |
| build_id |
str |
Build ID of the product the engagement tested. |
[optional] |
| commit_hash |
str |
Commit hash from repo |
[optional] |
| version |
str |
Version of the product the engagement tested. |
[optional] |
| created |
datetime |
Time that the object was initially created, and saved to the database |
[optional] [readonly] |
| updated |
datetime |
Time that the object was most recently saved to the database |
[optional] [readonly] |
Example
from defectdojo_api_generated.models.finding_engagement import FindingEngagement
# TODO update the JSON string below
json = "{}"
# create an instance of FindingEngagement from a JSON string
finding_engagement_instance = FindingEngagement.from_json(json)
# print the JSON string representation of the object
print(FindingEngagement.to_json())
# convert the object into a dict
finding_engagement_dict = finding_engagement_instance.to_dict()
# create an instance of FindingEngagement from a dict
finding_engagement_from_dict = FindingEngagement.from_dict(finding_engagement_dict)
[Back to Model list] [Back to API list] [Back to README]