jira.js
    Preparing search index...

    Interface PreviewConditionGroupConfiguration

    interface PreviewConditionGroupConfiguration {
        conditionGroups?: PreviewConditionGroupConfiguration[];
        conditions?: {
            id?: string;
            parameters?: Record<string, any>;
            ruleKey?: string;
            [key: string]: unknown;
        }[];
        operation?: string & {}
        | "ANY"
        | "ALL";
    }
    Index
    conditions?: {
        id?: string;
        parameters?: Record<string, any>;
        ruleKey?: string;
        [key: string]: unknown;
    }[]

    Type Declaration

    • [key: string]: unknown
    • Optionalid?: string

      A transient identifier for this element, unique within this response but not guaranteed to stable across requests.

    • Optionalparameters?: Record<string, any>

      The parameters of the rule.

    • OptionalruleKey?: string

      The rule key of the rule.

    operation?: string & {} | "ANY" | "ALL"