EndpointStatus
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| var_date |
date |
|
[optional] |
| last_modified |
datetime |
|
[optional] [readonly] |
| mitigated |
bool |
|
[optional] |
| mitigated_time |
datetime |
|
[optional] [readonly] |
| false_positive |
bool |
|
[optional] |
| out_of_scope |
bool |
|
[optional] |
| risk_accepted |
bool |
|
[optional] |
| mitigated_by |
int |
|
[optional] |
| endpoint |
int |
|
[optional] |
| finding |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.endpoint_status import EndpointStatus
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointStatus from a JSON string
endpoint_status_instance = EndpointStatus.from_json(json)
# print the JSON string representation of the object
print(EndpointStatus.to_json())
# convert the object into a dict
endpoint_status_dict = endpoint_status_instance.to_dict()
# create an instance of EndpointStatus from a dict
endpoint_status_from_dict = EndpointStatus.from_dict(endpoint_status_dict)
[Back to Model list] [Back to API list] [Back to README]