/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * A user the caller can see, serialized from their UserPlatformLink. * * The entity is the user — `id` is the user's id; the link's own id is a * storage artifact and isn't surfaced. */ export type AccessibleUser = { readonly id: number; readonly username: string; readonly email: string; readonly name: string; };