interface IssueBulkEditField {
    description?: string;
    fieldOptions?: IssueBulkOperationsFieldOption[];
    id?: string;
    isRequired?: boolean;
    multiSelectFieldOptions?: (
        | "REPLACE"
        | "ADD"
        | "REMOVE"
        | "REMOVE_ALL")[];
    name?: string;
    searchUrl?: string;
    type?: string;
    unavailableMessage?: string;
}

Properties

description?: string

Description of the field.

A list of options related to the field, applicable in contexts where multiple selections are allowed.

id?: string

The unique ID of the field.

isRequired?: boolean

Indicates whether the field is mandatory for the operation.

multiSelectFieldOptions?: (
    | "REPLACE"
    | "ADD"
    | "REMOVE"
    | "REMOVE_ALL")[]

Specifies supported actions (like add, replace, remove) on multi-select fields via an enum.

name?: string

The display name of the field.

searchUrl?: string

A URL to fetch additional data for the field

type?: string

The type of the field.

unavailableMessage?: string

A message indicating why the field is unavailable for editing.