/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Output for a single user inside a WatchedGroup. * * The entity is the user — `id` is the user's id (matching the URL pk). The * underlying `UserGroupLink.id` is a routing artifact and isn't surfaced. */ export type WatchedUserRead = { readonly id: number; readonly username: string; readonly email: string; };