Represents a Remote Config condition in the dataplane. A condition targets a specific group of users. A list of these conditions comprise part of a Remote Config template.
Signature:
export interface NamedCondition
Properties
Property | Type | Description |
---|---|---|
condition | OneOfCondition | The logic of this condition. See the documentation on condition expressions for the expected syntax of this field. |
name | string | A non-empty and unique name of this condition. |
NamedCondition.condition
The logic of this condition. See the documentation on condition expressions for the expected syntax of this field.
Signature:
condition: OneOfCondition;
NamedCondition.name
A non-empty and unique name of this condition.
Signature:
name: string;