RemoteConfigTemplate interface

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

簽名:

export interface RemoteConfigTemplate 

屬性

屬性 類型 說明
狀況 RemoteConfigCondition[] 按優先順序遞減排序的條件清單。
etag 字串 目前遠端設定範本的 ETag (唯讀)。
<參數群組> { [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;