ProductAPIScanConfiguration
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| service_key_1 |
str |
|
[optional] |
| service_key_2 |
str |
|
[optional] |
| service_key_3 |
str |
|
[optional] |
| product |
int |
|
[optional] |
| tool_configuration |
int |
|
[optional] |
| prefetch |
AssetAPIScanConfigurationPrefetch |
|
[optional] |
Example
from defectdojo_api_generated.models.product_api_scan_configuration import ProductAPIScanConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of ProductAPIScanConfiguration from a JSON string
product_api_scan_configuration_instance = ProductAPIScanConfiguration.from_json(json)
# print the JSON string representation of the object
print(ProductAPIScanConfiguration.to_json())
# convert the object into a dict
product_api_scan_configuration_dict = product_api_scan_configuration_instance.to_dict()
# create an instance of ProductAPIScanConfiguration from a dict
product_api_scan_configuration_from_dict = ProductAPIScanConfiguration.from_dict(product_api_scan_configuration_dict)
[Back to Model list] [Back to API list] [Back to README]