DojoGroupPrefetch

Properties

Name Type Description Notes
product_groups Dict[str, Product] [optional] [readonly]
product_type_groups Dict[str, ProductType] [optional] [readonly]
users Dict[str, UserStub] [optional] [readonly]

Example

from defectdojo_api_generated.models.dojo_group_prefetch import DojoGroupPrefetch

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

# convert the object into a dict
dojo_group_prefetch_dict = dojo_group_prefetch_instance.to_dict()
# create an instance of DojoGroupPrefetch from a dict
dojo_group_prefetch_from_dict = DojoGroupPrefetch.from_dict(dojo_group_prefetch_dict)

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