/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { SCIMMeta } from './SCIMMeta'; /** * SCIM group serializer for RBAC group management */ export type PatchedSCIMGroup = { /** * SCIM schema identifiers */ schemas?: Array; /** * RBAC group unique ID (must match existing RBAC group) */ id?: string; /** * RBAC group display name */ displayName?: string; /** * RBAC group description */ description?: string; /** * Users to add/remove from the RBAC group */ members?: Array>; /** * Resource metadata */ meta?: SCIMMeta; };