import type { RbacPlatform } from './RbacPlatform'; import type { RbacUser } from './RbacUser'; /** * Serializer for UserGroups. */ export type UserGroup = { readonly id: number; /** * Group display name */ name: string | null; readonly platform: RbacPlatform; /** * The platform key */ platform_key: string; /** * Group description */ description?: string | null; readonly owner: RbacUser; /** * List of user IDs to set in this group (replaces all existing users) */ users_to_set?: Array; };