DojoGroup

Properties

Name Type Description Notes
id int [optional] [readonly]
configuration_permissions List[Optional[int]] [optional]
name str [optional]
description str [optional]
social_provider str Group imported from a social provider. * `AzureAD` - AzureAD * `Remote` - Remote [optional]
users List[int] [optional] [readonly]
prefetch DojoGroupPrefetch [optional]

Example

from defectdojo_api_generated.models.dojo_group import DojoGroup

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

# convert the object into a dict
dojo_group_dict = dojo_group_instance.to_dict()
# create an instance of DojoGroup from a dict
dojo_group_from_dict = DojoGroup.from_dict(dojo_group_dict)

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