StringContextCondition

StringContextCondition(**data: Any)

Simple string-based context condition.
This condition checks if a named context variable exists and is truthy.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.

Parameters:
NameDescription
**dataType: Any

Class Attributes

model_config



variable_name



Instance Methods

evaluate

evaluate(self, context_variables: ContextVariables) -> bool

Check if the named context variable is truthy.

Parameters:
NameDescription
context_variablesThe context variables to check against

Type: ContextVariables
Returns:
TypeDescription
boolTrue if the variable exists and is truthy, False otherwise