Jira.js - Jira Cloud API library
    Preparing search index...

    Interface IssueBulkEditField

    interface IssueBulkEditField {
        description?: string;
        fieldOptions?: unknown[];
        id?: string;
        isRequired?: boolean;
        multiSelectFieldOptions?: string[];
        name?: string;
        searchUrl?: string;
        type?: string;
        unavailableMessage?: string;
    }
    Index

    Properties

    description?: string

    Description of the field.

    fieldOptions?: unknown[]

    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?: string[]

    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.