RemoteConfigCondition interface

Interface representing a Remote Config condition. A condition targets a specific group of users. A list of these conditions make up part of a Remote Config template.

Signature:

export interface RemoteConfigCondition 

Properties

Property Type Description
expression string 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.
tagColor TagColor The color associated with this condition for display purposes in the Firebase Console. Not specifying this value results in the console picking an arbitrary color to associate with the condition.

RemoteConfigCondition.expression

The logic of this condition. See the documentation on condition expressions for the expected syntax of this field.

Signature:

expression: string;

RemoteConfigCondition.name

A non-empty and unique name of this condition.

Signature:

name: string;

RemoteConfigCondition.tagColor

The color associated with this condition for display purposes in the Firebase Console. Not specifying this value results in the console picking an arbitrary color to associate with the condition.

Signature:

tagColor?: TagColor;