The details of a UI modification's context, which define where to activate the UI modification.

interface UiModificationContextDetails {
    id?: string;
    isAvailable?: boolean;
    issueTypeId: string;
    projectId: string;
    viewType: string;
}

Properties

id?: string

The ID of the UI modification context.

isAvailable?: boolean

Whether a context is available. For example, when a project is deleted the context becomes unavailable.

issueTypeId: string

The issue type ID of the context.

projectId: string

The project ID of the context.

viewType: string

The view type of the context. Only GIC (Global Issue Create) is supported.