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

    Interface ConnectCustomFieldValue

    A list of custom field details.

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

    Properties

    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 of text custom field type when _type is TextIssueField.

    Type: string

    The type of custom field.