StatusStatistics
Properties
| Name |
Type |
Description |
Notes |
| active |
int |
|
[optional] |
| verified |
int |
|
[optional] |
| duplicate |
int |
|
[optional] |
| false_p |
int |
|
[optional] |
| out_of_scope |
int |
|
[optional] |
| is_mitigated |
int |
|
[optional] |
| risk_accepted |
int |
|
[optional] |
| total |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.status_statistics import StatusStatistics
# TODO update the JSON string below
json = "{}"
# create an instance of StatusStatistics from a JSON string
status_statistics_instance = StatusStatistics.from_json(json)
# print the JSON string representation of the object
print(StatusStatistics.to_json())
# convert the object into a dict
status_statistics_dict = status_statistics_instance.to_dict()
# create an instance of StatusStatistics from a dict
status_statistics_from_dict = StatusStatistics.from_dict(status_statistics_dict)
[Back to Model list] [Back to API list] [Back to README]