ServerTemplateData interface

Represents the data in a Remote Config server template.

Signature:

export interface ServerTemplateData 

Properties

Property Type Description
conditions NamedCondition[] A list of conditions in descending order by priority.
etag string Current Remote Config template ETag (read-only).
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.

ServerTemplateData.conditions

A list of conditions in descending order by priority.

Signature:

conditions: NamedCondition[];

ServerTemplateData.etag

Current Remote Config template ETag (read-only).

Signature:

readonly etag: string;

ServerTemplateData.parameters

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

Signature:

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

ServerTemplateData.version

Version information for the current Remote Config template.

Signature:

version?: Version;