UNPKG

@esm-js/jira.js

Version:

A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.

16 lines (15 loc) 730 B
/** Details of user or system associated with a issue history metadata item. */ export interface HistoryMetadataParticipant { /** The ID of the user or system associated with a history record. */ id?: string; /** The display name of the user or system associated with a history record. */ displayName?: string; /** The key of the display name of the user or system associated with a history record. */ displayNameKey?: string; /** The type of the user or system associated with a history record. */ type?: string; /** The URL to an avatar for the user or system associated with a history record. */ avatarUrl?: string; /** The URL of the user or system associated with a history record. */ url?: string; }