OrganizationGroupRequest

Properties

Name Type Description Notes
organization int [optional]
group int [optional]
role int [optional]

Example

from defectdojo_api_generated.models.organization_group_request import OrganizationGroupRequest

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

# convert the object into a dict
organization_group_request_dict = organization_group_request_instance.to_dict()
# create an instance of OrganizationGroupRequest from a dict
organization_group_request_from_dict = OrganizationGroupRequest.from_dict(organization_group_request_dict)

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