AssetPrefetch

Properties

Name Type Description Notes
authorization_groups Dict[str, DojoGroup] [optional] [readonly]
members Dict[str, UserStub] [optional] [readonly]
prod_type Dict[str, ProductType] [optional] [readonly]
product_manager Dict[str, UserStub] [optional] [readonly]
regulations Dict[str, Regulation] [optional] [readonly]
sla_configuration Dict[str, SLAConfiguration] [optional] [readonly]
team_manager Dict[str, UserStub] [optional] [readonly]
technical_contact Dict[str, UserStub] [optional] [readonly]

Example

from defectdojo_api_generated.models.asset_prefetch import AssetPrefetch

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

# convert the object into a dict
asset_prefetch_dict = asset_prefetch_instance.to_dict()
# create an instance of AssetPrefetch from a dict
asset_prefetch_from_dict = AssetPrefetch.from_dict(asset_prefetch_dict)

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