ProductRequest

Properties

Name Type Description Notes
business_criticality str * `very high` - Very High * `high` - High * `medium` - Medium * `low` - Low * `very low` - Very Low * `none` - None [optional]
platform str * `web service` - API * `desktop` - Desktop * `iot` - Internet of Things * `mobile` - Mobile * `web` - Web [optional]
lifecycle str * `construction` - Construction * `production` - Production * `retirement` - Retirement [optional]
origin str * `third party library` - Third Party Library * `purchased` - Purchased * `contractor` - Contractor Developed * `internal` - Internally Developed * `open source` - Open Source * `outsourced` - Outsourced [optional]
tags List[str] [optional]
name str [optional]
description str [optional]
prod_numeric_grade int [optional]
user_records int Estimate the number of user records within the application. [optional]
revenue decimal.Decimal Estimate the application's revenue. [optional]
external_audience bool Specify if the application is used by people outside the organization. [optional]
internet_accessible bool Specify if the application is accessible from the public internet. [optional]
enable_product_tag_inheritance bool Enables product tag inheritance. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings [optional]
enable_simple_risk_acceptance bool Allows simple risk acceptance by checking/unchecking a checkbox. [optional]
enable_full_risk_acceptance bool Allows full risk acceptance using a risk acceptance form, expiration date, uploaded proof, etc. [optional]
disable_sla_breach_notifications bool Disable SLA breach notifications if configured in the global settings [optional]
product_manager int [optional]
technical_contact int [optional]
team_manager int [optional]
prod_type int [optional]
sla_configuration int [optional]
regulations List[int] [optional]

Example

from defectdojo_api_generated.models.product_request import ProductRequest

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

# convert the object into a dict
product_request_dict = product_request_instance.to_dict()
# create an instance of ProductRequest from a dict
product_request_from_dict = ProductRequest.from_dict(product_request_dict)

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