Creates a new organizational group. For example: // Create an Organizational Group with assigned Participants and other groups. dirOrgGroup = DirOrganizationalGroup.create(session : mySession, name : "Group1", description : "Group Nr. 1", assignedParticipants : ["Part1"], assignedGroups : ["Group2"], allowRolesAssigned : true, enabled : true)
| Name | Type | Description | Mode |
|---|---|---|---|
| session | Fuego.Fdi.DirectorySession | an active session with the directory provider | in |
| name | String | the new group's name | in |
| description | String | the new group's description | in |
| assignedParticipants | String[] | the list of participants assigned to the new group | in |
| assignedGroups | String[] | the list of other groups assigned to the new group | in |
| allowRolesAssigned | Bool | true if the new group is enabled to have roles. | in |
| enabled | Bool | true if the new group is enabled. | in |