EngagementPresetsRequest

Properties

Name Type Description Notes
title str Brief description of preset. [optional]
notes str Description of what needs to be tested or setting up environment for testing [optional]
scope str Scope of Engagement testing, IP's/Resources/URL's) [optional]
product int [optional]
test_type List[int] [optional]
network_locations List[int] [optional]

Example

from defectdojo_api_generated.models.engagement_presets_request import EngagementPresetsRequest

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

# convert the object into a dict
engagement_presets_request_dict = engagement_presets_request_instance.to_dict()
# create an instance of EngagementPresetsRequest from a dict
engagement_presets_request_from_dict = EngagementPresetsRequest.from_dict(engagement_presets_request_dict)

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