EngagementRequest

Properties

Name Type Description Notes
tags List[str] [optional]
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]
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]
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]

Example

from defectdojo_api_generated.models.engagement_request import EngagementRequest

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

# convert the object into a dict
engagement_request_dict = engagement_request_instance.to_dict()
# create an instance of EngagementRequest from a dict
engagement_request_from_dict = EngagementRequest.from_dict(engagement_request_dict)

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