OneOfCondition interface Stay organized with collections Save and categorize content based on your preferences.
Represents a condition that may be one of several types. Only the first defined field will be processed.
Signature:
exportinterfaceOneOfConditionProperties
| Property | Type | Description |
|---|---|---|
| andCondition | AndCondition | Makes this condition an AND condition. |
| customSignal | CustomSignalCondition | Makes this condition a custom signal condition. |
| false | Record<string, never> | Makes this condition a constant false. |
| orCondition | OrCondition | Makes this condition an OR condition. |
| percent | PercentCondition | Makes this condition a percent condition. |
| true | Record<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.