StubFindingCreate

Properties

Name Type Description Notes
id int [optional] [readonly]
test int [optional]
title str [optional]
var_date date [optional]
severity str [optional]
description str [optional]
reporter int [optional] [readonly]

Example

from defectdojo_api_generated.models.stub_finding_create import StubFindingCreate

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

# convert the object into a dict
stub_finding_create_dict = stub_finding_create_instance.to_dict()
# create an instance of StubFindingCreate from a dict
stub_finding_create_from_dict = StubFindingCreate.from_dict(stub_finding_create_dict)

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