OrganizationRequest

Properties

Name Type Description Notes
critical_asset bool [optional] [default to False]
key_asset bool [optional] [default to False]
name str [optional]
description str [optional]

Example

from defectdojo_api_generated.models.organization_request import OrganizationRequest

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

# convert the object into a dict
organization_request_dict = organization_request_instance.to_dict()
# create an instance of OrganizationRequest from a dict
organization_request_from_dict = OrganizationRequest.from_dict(organization_request_dict)

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