ReportGenerate

Properties

Name Type Description Notes
executive_summary ExecutiveSummary [optional]
product_type ProductType [optional] [readonly]
product Product [optional] [readonly]
engagement Engagement [optional] [readonly]
report_name str [optional]
report_info str [optional]
test Test [optional] [readonly]
endpoint Endpoint [optional] [readonly]
endpoints List[Endpoint] [optional] [readonly]
findings List[Finding] [optional] [readonly]
user UserStub [optional] [readonly]
team_name str [optional]
title str [optional]
user_id int [optional]
host str [optional]
finding_notes List[FindingToNotes] [optional]

Example

from defectdojo_api_generated.models.report_generate import ReportGenerate

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

# convert the object into a dict
report_generate_dict = report_generate_instance.to_dict()
# create an instance of ReportGenerate from a dict
report_generate_from_dict = ReportGenerate.from_dict(report_generate_dict)

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