StubFinding
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| title |
str |
|
[optional] |
| var_date |
date |
|
[optional] |
| severity |
str |
|
[optional] |
| description |
str |
|
[optional] |
| test |
int |
|
[optional] [readonly] |
| reporter |
int |
|
[optional] [readonly] |
Example
from defectdojo_api_generated.models.stub_finding import StubFinding
# TODO update the JSON string below
json = "{}"
# create an instance of StubFinding from a JSON string
stub_finding_instance = StubFinding.from_json(json)
# print the JSON string representation of the object
print(StubFinding.to_json())
# convert the object into a dict
stub_finding_dict = stub_finding_instance.to_dict()
# create an instance of StubFinding from a dict
stub_finding_from_dict = StubFinding.from_dict(stub_finding_dict)
[Back to Model list] [Back to API list] [Back to README]