Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/jira/src/version3/models/multipleCustomFieldValuesUpdate.ts>MultipleCustomFieldValuesUpdate

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface MultipleCustomFieldValuesUpdate
import { type MultipleCustomFieldValuesUpdate } from "https://deno.land/x/jira@v3.0.2/src/version3/models/multipleCustomFieldValuesUpdate.ts";

A custom field and its new value with a list of issue to update.

Properties

customField: string

The ID or key of the custom field. For example, customfield_10010.

issueIds: number[]

The list of issue IDs.

value: { }

The value for the custom field. The value must be compatible with the custom field type as follows:

string the value must be a string. number the value must be a number. datetime the value must be a string that represents a date in the ISO format or the simplified extended ISO format. For example, "2023-01-18T12:00:00-03:00" or "2023-01-18T12:00:00.000Z". However, the milliseconds part is ignored. user the value must be an object that contains the accountId field. group the value must be an object that contains the group name or groupId field. Because group names can change, we recommend using groupId.

A list of appropriate values must be provided if the field is of the list collection type.