RemoteConfigTemplate interface

表示 Remote Config 客户端模板。

签名

export interface RemoteConfigTemplate 

属性

属性 类型 说明
使用情况 RemoteConfigCondition[] 按优先级降序排列的条件列表。
etag string 当前 Remote Config 模板的 ETag(只读)。
parameterGroups { [键: 字符串]: RemoteConfigParameterGroup; } 参数组名称与其参数组对象的映射。群组的名称是可变的,但名称在 Remote Config 模板中必须是唯一的。名称不得超过 256 个字符,为人类可读懂。允许使用任何 Unicode 字符。
参数 { [键: 字符串]: RemoteConfigParameter; } 参数键与其可选默认值和可选条件值的映射。
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;