OneOfCondition interface

Represents a condition that may be one of several types. Only the first defined field will be processed.

Signature:

exportinterfaceOneOfCondition

Properties

PropertyTypeDescription
andConditionAndConditionMakes this condition an AND condition.
customSignalCustomSignalConditionMakes this condition a custom signal condition.
falseRecord<string, never>Makes this condition a constant false.
orConditionOrConditionMakes this condition an OR condition.
percentPercentConditionMakes this condition a percent condition.
trueRecord<string, never>Makes this condition a constant true.

OneOfCondition.andCondition

Makes this condition an AND condition.

Signature:

andCondition?:AndCondition;

OneOfCondition.customSignal

Makes this condition a custom signal condition.

Signature:

customSignal?:CustomSignalCondition;

OneOfCondition.false

Makes this condition a constant false.

Signature:

false?:Record<string,never>;

OneOfCondition.orCondition

Makes this condition an OR condition.

Signature:

orCondition?:OrCondition;

OneOfCondition.percent

Makes this condition a percent condition.

Signature:

percent?:PercentCondition;

OneOfCondition.true

Makes this condition a constant true.

Signature:

true?:Record<string,never>;