Engagement

Properties

Name Type Description Notes
id int [optional] [readonly]
tags List[str] [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]
name str [optional]
description str [optional]
version str Version of the product the engagement tested. [optional]
first_contacted date [optional]
target_start date [optional]
target_end date [optional]
reason str [optional]
active bool [optional] [readonly]
tracker str Link to epic or ticket system with changes to version. [optional]
test_strategy str [optional]
threat_model bool [optional]
api_test bool [optional]
pen_test bool [optional]
check_list bool [optional]
status str * `Not Started` - Not Started * `Blocked` - Blocked * `Cancelled` - Cancelled * `Completed` - Completed * `In Progress` - In Progress * `On Hold` - On Hold * `Scheduled` - Scheduled * `Waiting for Resource` - Waiting for Resource [optional]
progress str [optional] [readonly]
tmodel_path str [optional] [readonly]
done_testing bool [optional] [readonly]
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]
branch_tag str Tag or branch of the product the engagement tested. [optional]
source_code_management_uri str Resource link to source code [optional]
deduplication_on_engagement bool If enabled deduplication will only mark a finding in this engagement as duplicate of another finding if both findings are in this engagement. If disabled, deduplication is on the product level. [optional]
lead int [optional]
requester int [optional]
preset int Settings and notes for performing this engagement. [optional]
report_type int [optional]
product int [optional]
build_server int Build server responsible for CI/CD test [optional]
source_code_management_server int Source code server for CI/CD test [optional]
orchestration_engine int Orchestration service responsible for CI/CD test [optional]
notes List[Note] [optional] [readonly]
files List[File] [optional] [readonly]
risk_acceptance List[int] [optional] [readonly]

Example

from defectdojo_api_generated.models.engagement import Engagement

# TODO update the JSON string below
json = "{}"
# create an instance of Engagement from a JSON string
engagement_instance = Engagement.from_json(json)
# print the JSON string representation of the object
print(Engagement.to_json())

# convert the object into a dict
engagement_dict = engagement_instance.to_dict()
# create an instance of Engagement from a dict
engagement_from_dict = Engagement.from_dict(engagement_dict)

[Back to Model list] [Back to API list] [Back to README]