We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e67a9f commit 7cc7ab4Copy full SHA for 7cc7ab4
src/OpenFeature/Constant/Reason.cs
@@ -26,6 +26,16 @@ public static class Reason
26
/// </summary>
27
public static string Default = "DEFAULT";
28
29
+ /// <summary>
30
+ /// The resolved value is static (no dynamic evaluation)
31
+ /// </summary>
32
+ public static string Static = "STATIC";
33
+
34
35
+ /// The resolved value was retrieved from cache
36
37
+ public static string Cached = "CACHED";
38
39
/// <summary>
40
/// Use when an unknown reason is encountered when evaluating flag.
41
/// An example of this is if the feature provider returns a reason that is not defined in the spec
0 commit comments