RemoteConfigTemplate interface

代表遠端設定用戶端範本。

簽名:

export interface RemoteConfigTemplate 

屬性

屬性 類型 說明
限制條件 RemoteConfigCondition[] 依優先順序遞減排序的條件清單。
eTag 字串 目前遠端設定範本的 ETag (唯讀)。
parameterGroups { [key: string]: RemoteConfigParameterGroup; } 將參數群組名稱對應至其參數群組物件。群組名稱可變動,但在遠端設定範本中的群組不得重複。名稱長度不得超過 256 個字元,而且是使用者可理解的格式。允許使用任何 Unicode 字元。
參數 { [key: string]: RemoteConfigParameter; } 將參數鍵對應至其選用預設值和選用的條件值。
版本 版本 目前遠端設定範本的版本資訊。

RemoteConfigTemplate.conditions

依優先順序遞減排序的條件清單。

簽名:

conditions: RemoteConfigCondition[];

RemoteConfigTemplate.etag

目前遠端設定範本的 ETag (唯讀)。

簽名:

readonly etag: string;

RemoteConfigTemplate.parameterGroups

將參數群組名稱對應至其參數群組物件。群組名稱可變動,但在遠端設定範本中的群組不得重複。名稱長度不得超過 256 個字元,而且是使用者可理解的格式。允許使用任何 Unicode 字元。

簽名:

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

RemoteConfigTemplate.parameters

將參數鍵對應至其選用預設值和選用的條件值。

簽名:

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

RemoteConfigTemplate.version

目前遠端設定範本的版本資訊。

簽名:

version?: Version;