RemoteConfigTemplate interface

表示 Remote Config 客户端模板。

签名

export interface RemoteConfigTemplate 

属性

属性 类型 说明
条件 RemoteConfigCondition[] 按优先级降序排列的条件列表。
etag 字符串 当前 Remote Config 模板的 ETag(只读)。
参数组 { [key: string]: RemoteConfigParameterGroup;} 参数组名称到其参数组对象的映射。群组名称可以更改,但在 Remote Config 模板中的群组之间必须是唯一的。名称不得超过 256 个字符,直观易读。允许使用任何 Unicode 字符。
参数 { [key: string]: RemoteConfig 参数;} 参数键与其可选默认值和可选条件值的映射。
version 版本 当前 Remote Config 模板的版本信息。

RemoteConfigTemplate.conditions

按优先级降序排列的条件列表。

签名

conditions: RemoteConfigCondition[];

RemoteConfigTemplate.etag

当前 Remote Config 模板的 ETag(只读)。

签名

readonly etag: string;

RemoteConfigTemplate.parameterGroups

参数组名称到其参数组对象的映射。群组名称可以更改,但在 Remote Config 模板中的群组之间必须是唯一的。名称不得超过 256 个字符,直观易读。允许使用任何 Unicode 字符。

签名

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

RemoteConfigTemplate.parameters

参数键与其可选默认值和可选条件值的映射。

签名

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

RemoteConfigTemplate.version

当前 Remote Config 模板的版本信息。

签名

version?: Version;