RemoteConfigParameter interface

代表遠端設定參數的介面。參數必須至少有 defaultValueconditionalValues 項目,參數才能發揮作用。

簽名:

export interface RemoteConfigParameter 

屬性

屬性 類型 說明
conditionalValues { [key: string]: RemoteConfigParameterValue;} (condition name, value) 地圖。這項參數的值取決於優先順序最高 (「遠端設定」範本條件清單中第一個列出的條件)。
defaultValue RemoteConfigParameterValue 所有已命名條件皆未評估為 true 時,要設定參數的值。
description 字串 這個參數的說明。不可以超過 100 個字元,而且可以包含任何萬國碼 (Unicode) 字元。
valueType ParameterValueType 目前範本版本中這個參數的所有值的資料類型。如未指定,預設值為 ParameterValueType.STRING

RemoteConfigParameter.conditionalValues

(condition name, value) 地圖。這項參數的值取決於優先順序最高 (「遠端設定」範本的條件清單中列出) 的條件名稱。

簽名:

conditionalValues?: {
        [key: string]: RemoteConfigParameterValue;
    };

RemoteConfigParameter.defaultValue

所有已命名條件皆未評估為 true 時,要設定參數的值。

簽名:

defaultValue?: RemoteConfigParameterValue;

RemoteConfigParameter.description

此參數的說明。不可以超過 100 個字元,而且可以包含任何萬國碼 (Unicode) 字元。

簽名:

description?: string;

RemoteConfigParameter.valueType

目前範本版本中這個參數的所有值的資料類型。如未指定,預設值為 ParameterValueType.STRING

簽名:

valueType?: ParameterValueType;