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

    Interface IssueUpdateDetails

    Details of an issue update request.

    interface IssueUpdateDetails {
        fields?: any;
        historyMetadata?: Version3Models.HistoryMetadata;
        properties?: Version3Models.EntityProperty[];
        transition?: Version3Models.IssueTransition;
        update?: {};
    }

    Hierarchy (View Summary)

    Index

    Properties

    fields?: any

    List of issue screen fields to update, specifying the sub-field to update and its value for each field. This field provides a straightforward option when setting a sub-field. When multiple sub-fields or other operations are required, use update. Fields included in here cannot be included in update.

    Details of issue properties to be add or update.

    update?: {}

    A Map containing the field field name and a list of operations to perform on the issue screen field. Note that fields included in here cannot be included in fields.