/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for group access information in responses */ export type UserGroupAccessInfo = { /** * Group ID */ id: number; /** * Group name */ name: string; /** * Group description */ description: string; /** * List of permissions user has for this group (e.g., ['read', 'manageMentors']) */ permissions: Array; };