FindingPrefetch

Properties

Name Type Description Notes
auth_issues Dict[str, EngagementCheckList] [optional] [readonly]
author_issues Dict[str, EngagementCheckList] [optional] [readonly]
config_issues Dict[str, EngagementCheckList] [optional] [readonly]
crypto_issues Dict[str, EngagementCheckList] [optional] [readonly]
data_issues Dict[str, EngagementCheckList] [optional] [readonly]
defect_review_requested_by Dict[str, UserStub] [optional] [readonly]
duplicate_finding Dict[str, Finding] [optional] [readonly]
endpoint_set Dict[str, Endpoint] [optional] [readonly]
endpoints Dict[str, Endpoint] [optional] [readonly]
files Dict[str, File] [optional] [readonly]
finding_group_set Dict[str, FindingGroup] [optional] [readonly]
found_by Dict[str, TestType] [optional] [readonly]
last_reviewed_by Dict[str, UserStub] [optional] [readonly]
mitigated_by Dict[str, UserStub] [optional] [readonly]
notes Dict[str, Note] [optional] [readonly]
other_issues Dict[str, EngagementCheckList] [optional] [readonly]
reporter Dict[str, UserStub] [optional] [readonly]
review_requested_by Dict[str, UserStub] [optional] [readonly]
reviewers Dict[str, UserStub] [optional] [readonly]
risk_acceptance_set Dict[str, RiskAcceptance] [optional] [readonly]
sensitive_issues Dict[str, EngagementCheckList] [optional] [readonly]
session_issues Dict[str, EngagementCheckList] [optional] [readonly]
sonarqube_issue Dict[str, SonarqubeIssue] [optional] [readonly]
test Dict[str, Test] [optional] [readonly]
test_import_set Dict[str, TestImport] [optional] [readonly]

Example

from defectdojo_api_generated.models.finding_prefetch import FindingPrefetch

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

# convert the object into a dict
finding_prefetch_dict = finding_prefetch_instance.to_dict()
# create an instance of FindingPrefetch from a dict
finding_prefetch_from_dict = FindingPrefetch.from_dict(finding_prefetch_dict)

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