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>;

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-09-12 UTC.