FindingGroupRequest

Properties

Name Type Description Notes
name str [optional]
test int [optional]

Example

from defectdojo_api_generated.models.finding_group_request import FindingGroupRequest

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

# convert the object into a dict
finding_group_request_dict = finding_group_request_instance.to_dict()
# create an instance of FindingGroupRequest from a dict
finding_group_request_from_dict = FindingGroupRequest.from_dict(finding_group_request_dict)

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