1
0
Fork 0
mirror of synced 2024-09-08 13:41:09 +12:00

Add members to group

This commit is contained in:
adrinr 2023-03-17 18:40:42 +01:00
parent 4ac682a3c2
commit 9d0aff96e4

View file

@ -5,10 +5,13 @@ export interface ScimGroupResponse extends ScimResource {
schemas: ["urn:ietf:params:scim:schemas:core:2.0:Group"]
id: string
externalId: string
displayName: string
meta: ScimMeta & {
resourceType: "Group"
}
displayName: string
members?: {
value: string
}[]
}
export interface ScimCreateGroupRequest {