import { ApplicationTeammateId } from './idTypesV2'; import { ApplicationPaginatedResults } from './paginationTypesV2'; export interface ApplicationTeammate { /** Unique ID of the teammate. */ id: ApplicationTeammateId; /** Name of the teammate. */ name: string; /** Username of the teammate, used to @-mention them in a comment. */ username: string; /** Email address of the teammate’s account. */ email: string; /** Whether the teammate is a global admin. */ is_admin?: boolean; } export type ApplicationTeammateList = ApplicationPaginatedResults;