AppAnalysisRequest
Properties
| Name |
Type |
Description |
Notes |
| tags |
List[str] |
|
[optional] |
| name |
str |
|
[optional] |
| confidence |
int |
|
[optional] |
| version |
str |
|
[optional] |
| icon |
str |
|
[optional] |
| website |
str |
|
[optional] |
| website_found |
str |
|
[optional] |
| product |
int |
|
[optional] |
| user |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.app_analysis_request import AppAnalysisRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AppAnalysisRequest from a JSON string
app_analysis_request_instance = AppAnalysisRequest.from_json(json)
# print the JSON string representation of the object
print(AppAnalysisRequest.to_json())
# convert the object into a dict
app_analysis_request_dict = app_analysis_request_instance.to_dict()
# create an instance of AppAnalysisRequest from a dict
app_analysis_request_from_dict = AppAnalysisRequest.from_dict(app_analysis_request_dict)
[Back to Model list] [Back to API list] [Back to README]