Variable StandardResolutionReasonsConst

StandardResolutionReasons: {
    CACHED: "CACHED";
    DEFAULT: "DEFAULT";
    DISABLED: "DISABLED";
    ERROR: "ERROR";
    SPLIT: "SPLIT";
    STALE: "STALE";
    STATIC: "STATIC";
    TARGETING_MATCH: "TARGETING_MATCH";
    UNKNOWN: "UNKNOWN";
} = ...

Type declaration

  • Readonly CACHED: "CACHED"

    The resolved value was retrieved from cache.

  • Readonly DEFAULT: "DEFAULT"

    The resolved value was configured statically, or otherwise fell back to a pre-configured value.

  • Readonly DISABLED: "DISABLED"

    The resolved value was the result of the flag being disabled in the management system.

  • Readonly ERROR: "ERROR"

    The resolved value was the result of an error.

    Note: The errorCode and errorMessage fields may contain additional details of this error.

  • Readonly SPLIT: "SPLIT"

    The resolved value was the result of pseudorandom assignment.

  • Readonly STALE: "STALE"

    The resolved value is non-authoritative or possibly out of date.

  • Readonly STATIC: "STATIC"

    The resolved value is static (no dynamic evaluation).

  • Readonly TARGETING_MATCH: "TARGETING_MATCH"

    The resolved value was the result of a dynamic evaluation, such as a rule or specific user-targeting.

  • Readonly UNKNOWN: "UNKNOWN"

    The reason for the resolved value could not be determined.

Generated using TypeDoc