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

    Interface JqlFunctionPrecomputation

    Jql function precomputation.

    interface JqlFunctionPrecomputation {
        arguments?: string[];
        created?: string;
        error?: string;
        field?: string;
        functionKey?: string;
        functionName?: string;
        id?: string;
        operator?: string;
        updated?: string;
        used?: string;
        value?: string;
    }
    Index

    Properties

    arguments?: string[]

    The list of arguments function was invoked with.

    created?: string

    The timestamp of the precomputation creation.

    error?: string

    The error message to be displayed to the user.

    field?: string

    The field the function was executed against.

    functionKey?: string

    The function key.

    functionName?: string

    The name of the function.

    id?: string

    The id of the precomputation.

    operator?: string

    The operator in context of which function was executed.

    updated?: string

    The timestamp of the precomputation last update.

    used?: string

    The timestamp of the precomputation last usage.

    value?: string

    The JQL fragment stored as the precomputation.