Skip to content

ExprTypeThresholdConditionsEvaluatorType🔗

Definition🔗

type ExprTypeThresholdConditionsEvaluatorType string
const (
    ExprTypeThresholdConditionsEvaluatorTypeGt ExprTypeThresholdConditionsEvaluatorType = "gt"
    ExprTypeThresholdConditionsEvaluatorTypeLt ExprTypeThresholdConditionsEvaluatorType = "lt"
    ExprTypeThresholdConditionsEvaluatorTypeEq ExprTypeThresholdConditionsEvaluatorType = "eq"
    ExprTypeThresholdConditionsEvaluatorTypeNe ExprTypeThresholdConditionsEvaluatorType = "ne"
    ExprTypeThresholdConditionsEvaluatorTypeGte ExprTypeThresholdConditionsEvaluatorType = "gte"
    ExprTypeThresholdConditionsEvaluatorTypeLte ExprTypeThresholdConditionsEvaluatorType = "lte"
    ExprTypeThresholdConditionsEvaluatorTypeWithinRange ExprTypeThresholdConditionsEvaluatorType = "within_range"
    ExprTypeThresholdConditionsEvaluatorTypeOutsideRange ExprTypeThresholdConditionsEvaluatorType = "outside_range"
    ExprTypeThresholdConditionsEvaluatorTypeWithinRangeIncluded ExprTypeThresholdConditionsEvaluatorType = "within_range_included"
    ExprTypeThresholdConditionsEvaluatorTypeOutsideRangeIncluded ExprTypeThresholdConditionsEvaluatorType = "outside_range_included"
)