Langfuse JS/TS SDKs
    Preparing search index...

    Interface PricingTierAttributeCondition

    Condition that matches any configured value for a top-level observation attribute.

    interface PricingTierAttributeCondition {
        key: string;
        operator: "in";
        source: PricingTierAttributeSource;
        values: string[];
    }
    Index

    Properties

    key: string

    Exact top-level attribute key.

    operator: "in"

    Membership operator.

    Observation attribute object evaluated by this condition.

    values: string[]

    Accepted string attribute values. At least one value is required.