Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/jira/src/version2/models/connectCustomFieldValue.ts>ConnectCustomFieldValue

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

A list of custom field details.

Properties

Type: string

The type of custom field.

fieldID: number

The custom field ID.

issueID: number

The issue ID.

optional
number: number

The value of number type custom field when _type is NumberIssueField.

optional
optionID: string

The value of single select and multiselect custom field type when _type is SingleSelectIssueField or MultiSelectIssueField.

optional
richText: string

The value of richText type custom field when _type is RichTextIssueField.

optional
string: string

The value of string type custom field when _type is StringIssueField.

optional
text: string

The value of text custom field type when _type is TextIssueField.