Interface IssueEntityPropertiesForMultiUpdate

An issue ID with entity property values. See Entity properties for more information.

interface IssueEntityPropertiesForMultiUpdate {
    issueID?: number;
    properties?: {
        [key: string]: JsonNode;
    };
}

Properties

issueID?: number

The ID of the issue.

properties?: {
    [key: string]: JsonNode;
}

Entity properties to set on the issue. The maximum length of an issue property value is 32768 characters.