The details of a custom field context.

interface CustomFieldContext {
    description: string;
    id: string;
    isAnyIssueType: boolean;
    isGlobalContext: boolean;
    name: string;
}

Properties

description: string

The description of the context.

id: string

The ID of the context.

isAnyIssueType: boolean

Whether the context apply to all issue types.

isGlobalContext: boolean

Whether the context is global.

name: string

The name of the context.