You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describes the general reason that LaunchDarkly selected this variation.
rule_index
int
The positional index of the matching rule if the kind is 'RULE_MATCH'. The index is 0-based.
[optional]
rule_id
str
The unique identifier of the matching rule if the kind is 'RULE_MATCH'.
[optional]
prerequisite_key
str
The key of the flag that failed if the kind is 'PREREQUISITE_FAILED'.
[optional]
in_experiment
bool
Indicates whether the context was evaluated as part of an experiment.
[optional]
error_kind
str
The specific error type if the kind is 'ERROR'.
[optional]
Example
fromlaunchdarkly_api.models.context_instance_evaluation_reasonimportContextInstanceEvaluationReason# TODO update the JSON string belowjson="{}"# create an instance of ContextInstanceEvaluationReason from a JSON stringcontext_instance_evaluation_reason_instance=ContextInstanceEvaluationReason.from_json(json)
# print the JSON string representation of the objectprint(ContextInstanceEvaluationReason.to_json())
# convert the object into a dictcontext_instance_evaluation_reason_dict=context_instance_evaluation_reason_instance.to_dict()
# create an instance of ContextInstanceEvaluationReason from a dictcontext_instance_evaluation_reason_from_dict=ContextInstanceEvaluationReason.from_dict(context_instance_evaluation_reason_dict)