AppAnalysisPrefetch

Properties

Name Type Description Notes
product Dict[str, Product] [optional] [readonly]
user Dict[str, UserStub] [optional] [readonly]

Example

from defectdojo_api_generated.models.app_analysis_prefetch import AppAnalysisPrefetch

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

# convert the object into a dict
app_analysis_prefetch_dict = app_analysis_prefetch_instance.to_dict()
# create an instance of AppAnalysisPrefetch from a dict
app_analysis_prefetch_from_dict = AppAnalysisPrefetch.from_dict(app_analysis_prefetch_dict)

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