A list of custom field details.

interface ConnectCustomFieldValue {
    Type: string;
    fieldID: number;
    issueID: number;
    number?: number;
    optionID?: string;
    richText?: string;
    string?: string;
    text?: string;
}

Properties

Type: string

The type of custom field.

fieldID: number

The custom field ID.

issueID: number

The issue ID.

number?: number

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

optionID?: string

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

richText?: string

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

string?: string

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

text?: string

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