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.

18 lines (16 loc) 731 B
import type { UiModificationContextDetails } from './uiModificationContextDetails'; /** The details of a UI modification. */ export interface UiModificationDetails { /** The ID of the UI modification. */ id: string; /** The name of the UI modification. The maximum length is 255 characters. */ name: string; /** The description of the UI modification. The maximum length is 255 characters. */ description?: string; /** The URL of the UI modification. */ self: string; /** The data of the UI modification. The maximum size of the data is 50000 characters. */ data?: string; /** List of contexts of the UI modification. The maximum number of contexts is 1000. */ contexts?: UiModificationContextDetails[]; }