RemoteConfigTemplate interface

Represents a Remote Config client template.

Signature:

export interface RemoteConfigTemplate 

Properties

Property Type Description
conditions RemoteConfigCondition[] A list of conditions in descending order by priority.
etag string ETag of the current Remote Config template (readonly).
parameterGroups { [key: string]: RemoteConfigParameterGroup; } Map of parameter group names to their parameter group objects. A group's name is mutable but must be unique among groups in the Remote Config template. The name is limited to 256 characters and intended to be human-readable. Any Unicode characters are allowed.
parameters { [key: string]: RemoteConfigParameter; } Map of parameter keys to their optional default values and optional conditional values.
version Version Version information for the current Remote Config template.

RemoteConfigTemplate.conditions

A list of conditions in descending order by priority.

Signature:

conditions: RemoteConfigCondition[];

RemoteConfigTemplate.etag

ETag of the current Remote Config template (readonly).

Signature:

readonly etag: string;

RemoteConfigTemplate.parameterGroups

Map of parameter group names to their parameter group objects. A group's name is mutable but must be unique among groups in the Remote Config template. The name is limited to 256 characters and intended to be human-readable. Any Unicode characters are allowed.

Signature:

parameterGroups: {
        [key: string]: RemoteConfigParameterGroup;
    };

RemoteConfigTemplate.parameters

Map of parameter keys to their optional default values and optional conditional values.

Signature:

parameters: {
        [key: string]: RemoteConfigParameter;
    };

RemoteConfigTemplate.version

Version information for the current Remote Config template.

Signature:

version?: Version;